recorder/misc.h
2015-08-15 13:18:27 +02:00

19 lines
343 B
C

#ifndef MISC_H_INCLUDED
# define MISC_H_INCLUDED
#include <time.h>
#include "udata.h"
#ifndef TRUE
# define TRUE (1)
# define FALSE (0)
#endif
int mkpath(char *path);
char *bindump(char *buf, long buflen);
void monitorhook(struct udata *ud, time_t now, char *topic);
void monitor_update(struct udata *ud, time_t now, char *topic);
#endif