lunabot/src/journal/journal.h

11 lines
175 B
C
Raw Normal View History

2019-04-29 03:42:44 +00:00
#ifndef __JOURNAL_H__
#define __JOURNAL_H__
#include <stdio.h>
FILE *journal_open(char *topic);
void journal_write(FILE*, char* message);
void journal_close(FILE*);
#endif