<> → ""

This commit is contained in:
Casey 2024-09-06 23:03:15 +03:00
parent 63005396d6
commit e3807d2787
Signed by: hkc
GPG Key ID: F0F6CFE11CDB0960
6 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
// x-run: make -C.. bot-run // x-run: make -C.. bot-run
#include <stdio.h> #include <stdio.h>
#include <mongoose.h> #include "mongoose.h"
#include <threads.h> #include <threads.h>
#include <time.h> #include <time.h>
#include "obcb.h" #include "obcb.h"

View File

@ -1,6 +1,6 @@
// x-run: make -C.. CFLAGS+=-ggdb live-1chunk-run // x-run: make -C.. CFLAGS+=-ggdb live-1chunk-run
#include <stdio.h> #include <stdio.h>
#include <mongoose.h> #include "mongoose.h"
#include <raylib.h> #include <raylib.h>
#include <raymath.h> #include <raymath.h>
#include <threads.h> #include <threads.h>

View File

@ -3,7 +3,7 @@
#include <raymath.h> #include <raymath.h>
#include <stdint.h> #include <stdint.h>
#include <stdio.h> #include <stdio.h>
#include <mongoose.h> #include "mongoose.h"
#include <threads.h> #include <threads.h>
#include "obcb.h" #include "obcb.h"

View File

@ -1,7 +1,7 @@
// x-run: make -C.. test // x-run: make -C.. test
#include <netinet/in.h> #include <netinet/in.h>
#include <stdio.h> #include <stdio.h>
#include <mongoose.h> #include "mongoose.h"
#include "packets.h" #include "packets.h"
static void obcb_send_full_state_request(struct mg_connection *c, uint16_t index); static void obcb_send_full_state_request(struct mg_connection *c, uint16_t index);

View File

@ -1,7 +1,7 @@
#include <stdbool.h> #include <stdbool.h>
#include <stdint.h> #include <stdint.h>
#include <mongoose.h> #include "mongoose.h"
#include <string.h> #include <string.h>
#include <threads.h> #include <threads.h>

View File

@ -1,5 +1,5 @@
#include "obcb.h" #include "obcb.h"
#include <mongoose.h> #include "mongoose.h"
void obcb_send_full_state_request(struct mg_connection *c, uint16_t index) { void obcb_send_full_state_request(struct mg_connection *c, uint16_t index) {
static unsigned char packet[sizeof(struct obcb_msg_full_state_request) + 1]; static unsigned char packet[sizeof(struct obcb_msg_full_state_request) + 1];