diff options
author | Preston Pan <ret2pop@gmail.com> | 2024-12-24 21:11:06 -0800 |
---|---|---|
committer | Preston Pan <ret2pop@gmail.com> | 2024-12-24 21:11:06 -0800 |
commit | e75d6f6b8f4512a5bbfecbfa8c17f0bb687e3d55 (patch) | |
tree | 7a96002751a1ca3b173762a13b181ebea4123817 /src/opcodes.c |
first commit
Diffstat (limited to 'src/opcodes.c')
-rw-r--r-- | src/opcodes.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/opcodes.c b/src/opcodes.c new file mode 100644 index 0000000..66742db --- /dev/null +++ b/src/opcodes.c @@ -0,0 +1,26 @@ +#include <stdlib.h> +#include <opcodes.h> +#include <helpers.h> + + +void die_lz(int code, const char *msg) { + if (code < 0) { + die(msg); + } +} + +char *decode_client_opcode(int op) { + return "implement me"; +} + +char *decode_server_opcode(int op) { + return "implement me"; +} + +int encode_client_opcode(char *c) { + return -1; +} + +int encode_server_opcode(char *c) { + return -1; +} |