1 1.1 christos 2 1.1 christos include = <<- _EOF_ 3 1.1 christos #ifdef __windows 4 1.1 christos extern int atoi(const char*); 5 1.1 christos #else 6 1.1 christos # include <stdlib.h> 7 1.1 christos #endif 8 1.1 christos _EOF_; 9 1.1 christos 10 1.1 christos flag = { 11 1.1 christos name = debug-level; 12 1.1 christos value = d; 13 1.1 christos max = NOLIMIT; 14 1.1 christos nopreset; 15 1.1 christos flag-code = 'OPT_VALUE_SET_DEBUG_LEVEL++;'; 16 1.1 christos descrip = "Increase debug verbosity level"; 17 1.1 christos doc = <<- _EndOfDoc_ 18 1.1 christos _EndOfDoc_; 19 1.1 christos }; 20 1.1 christos 21 1.1 christos flag = { 22 1.1 christos name = set-debug-level; 23 1.1 christos value = D; 24 1.1 christos max = NOLIMIT; 25 1.1 christos descrip = "Set the debug verbosity level"; 26 1.1 christos arg-type = number; 27 1.1 christos doc = <<- _EndOfDoc_ 28 1.1 christos _EndOfDoc_; 29 1.1 christos }; 30