1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- #ifndef _lub_dump_h
- #define _lub_dump_h
- #include <stdarg.h>
-
- int lub_dump_printf(
-
- const char *fmt, ...
- );
- void lub_dump_indent(void);
- void lub_dump_undent(void);
- #endif
|