added test client

This commit is contained in:
Arthur-Coppey
2021-07-08 13:42:32 +02:00
parent c3418f2ec4
commit a9da4251e2
9 changed files with 112 additions and 36 deletions
+11
View File
@@ -0,0 +1,11 @@
#include "quote.h"
#include "server.h"
int main(int argc, char *argv[]) {
// char quote[1024];
// getRandomQuote(quote);
// printf("%s\n", quote);
tcpServer();
return 0;
}