/I am enabling one feature for whole project, I need to keep enabled piece of code rest I need to remove using python script. example: below code is available in a text.c "sweety is coming" is enabled whole project.. after executing the script the text.c should be like output /
#include <stdio.h>
#include <main.h>
#if define (sweety is coming)
do somethinhg
#else
hey
#if define (lalli is coming)
please go away
#endif
#endif
if(great)
do something something
you can stop the Program
output:
#include <stdio.h>
#include <main.h>
do somethinhg
if(great)
do something something
you can stop the Program