This commit is contained in:
Daniel Ledda
2025-12-17 15:37:33 +01:00
parent ede9fd6e14
commit b39bcc6513
4 changed files with 4 additions and 12 deletions

5
app.c
View File

@@ -1,3 +1,2 @@
//#include "./scratchpad.c"
//#include "./server-chat.example.c"
#include "./http1-1.example.c"
//#include "./examples/server-chat.c"
#include "./examples/http1-1.c"

View File

@@ -1,5 +1,5 @@
#define DJSTD_BASIC_ENTRY
#include "core.c"
#include "../core.c"
int djstd_entry(Arena *arena, StringList args) {
Socket sock = socketConnect(arena, (SocketConnectInfo){

View File

@@ -1,7 +1,6 @@
#include "core.h"
#define DJSTD_BASIC_ENTRY
#include "core.c"
#include "../core.c"
#include "signal.h"
Server *openServer = NULL;

View File

@@ -1,6 +0,0 @@
#define DJSTD_BASIC_ENTRY
#include "core.c"
int djstd_entry(Arena *arena, StringList args) {
return 0;
}