1
0
mirror of https://github.com/rzzzwilson/pymlac.git synced 2025-06-10 09:32:41 +00:00
2015-11-04 19:58:22 +07:00

14 lines
202 B
C
Executable File

/*
* Interface for the vimlac trace routines.
*/
#ifndef TRACE_H
#define TRACE_H
void trace(char *fmt, ...);
void trace_open(void);
void trace_close(void);
void trace_delim(char *fmt, ...);
#endif