lunabot/src/journal/emotion.c

12 lines
205 B
C

#include <stdio.h>
#include "journal.h"
void handle_emotion(FILE *journal, char* msg)
{
char formatted[512];
sprintf(formatted, "%s\n", msg);
journal_write(journal, formatted);
return;
}