Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Garry Offord

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Turn on DEBUG in C sources files

   1  
   2      //
   3      // Turn on debugging if desired.
   4      //
   5      char* env_ptr = getenv("DEBUG");
   6      if (env_ptr != NULL && toupper(*env_ptr) == 'Y')
   7      {
   8          SET_ZFLAG(ZFLAG_DEBUG_EVERYTHING);
   9      }
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS