mirror of
https://github.com/owntracks/recorder.git
synced 2024-11-15 01:48:27 -07:00
24 lines
524 B
C
24 lines
524 B
C
#ifndef MISC_H_INCLUDED
|
|
# define MISC_H_INCLUDED
|
|
|
|
#include <time.h>
|
|
#include "udata.h"
|
|
|
|
extern char STORAGEDIR[];
|
|
|
|
#ifndef TRUE
|
|
# define TRUE (1)
|
|
# define FALSE (0)
|
|
#endif
|
|
|
|
int mkpath(char *path);
|
|
char *bindump(char *buf, long buflen);
|
|
|
|
// void monitor_update(struct udata *ud, time_t now, char *topic);
|
|
void monitorhook(struct udata *userdata, time_t now, char *topic);
|
|
char *monitor_get();
|
|
void get_defaults(char *filename, struct udata *userdata);
|
|
void display_json_variables(struct udata *userdata, bool plain);
|
|
|
|
#endif
|