lunabot/src/journal/emotion.c

11 lines
169 B
C
Raw Normal View History

2019-04-27 06:49:04 +00:00
#include <stdio.h>
2019-04-29 03:42:44 +00:00
#include "journal.h"
void handle_emotion(FILE *journal, char* msg)
2019-04-27 06:49:04 +00:00
{
2019-04-29 03:42:44 +00:00
// TODO: add newline to msg
journal_write(journal, msg);
2019-04-27 06:49:04 +00:00
return;
}