test quote functions

This commit is contained in:
Arthur-Coppey 2021-04-18 03:14:21 +02:00
parent 296059e911
commit c3418f2ec4

10
main.c
View File

@ -1,6 +1,10 @@
#include <stdio.h> #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; return 0;
} }