first commit

This commit is contained in:
Jose Caban
2025-06-07 01:59:34 -04:00
commit 388ac241f0
3558 changed files with 9116289 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#ifndef _MESSAGE_H_
#define _MESSAGE_H_
typedef struct Request {
int bufferIndex;
} Request;
typedef struct Response {
char data;
} Response;
#endif