123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- #ifndef _lub_dump_h
- #define _lub_dump_h
- #define LUB_DUMP_NULL "(null)"
- #define LUB_DUMP_STR(str) ( str ? str : LUB_DUMP_NULL )
- #define LUB_DUMP_BOOL(val) ( val ? "true" : "false" )
- #include <stdarg.h>
-
- int lub_dump_printf(
-
- const char *fmt, ...
- );
- void lub_dump_indent(void);
- void lub_dump_undent(void);
- #endif
|