From c3418f2ec49b614731949fbfacfbb4b91f2967c0 Mon Sep 17 00:00:00 2001 From: Arthur-Coppey Date: Sun, 18 Apr 2021 03:14:21 +0200 Subject: [PATCH] test quote functions --- main.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/main.c b/main.c index f26b97c..1c7d414 100644 --- a/main.c +++ b/main.c @@ -1,6 +1,10 @@ -#include +#include "quote.h" +#include "server.h" + +int main(int argc, char *argv[]) { + char quote[1024]; + getRandomQuote(quote); + printf("%s\n", quote); -int main() { - printf("Hello, World!\n"); return 0; }