mirror of
https://github.com/Hizenberg469/Algorithms-snippets.git
synced 2026-04-19 22:52:23 +03:00
18 lines
330 B
C
18 lines
330 B
C
#ifndef __DEBUG__
|
|
#define __DEBUG__
|
|
|
|
/*
|
|
* var_name: to display variable name used
|
|
* var_value: to display variable value with variable name.
|
|
*/
|
|
|
|
#define var_name(arg) #arg
|
|
|
|
|
|
#ifdef NPRINT_VAR
|
|
#define var_value(arg) ((void)0)
|
|
#else
|
|
#define var_value(arg) cout << var_name(arg) << ": " << arg << endl;
|
|
#endif
|
|
|
|
#endif |