initial commit

This commit is contained in:
2025-08-05 15:53:44 +08:00
commit 09dc02ae52
553 changed files with 137665 additions and 0 deletions

11
third_party/libhv/event/unpack.h vendored Executable file
View File

@@ -0,0 +1,11 @@
#ifndef HV_UNPACK_H_
#define HV_UNPACK_H_
#include "hloop.h"
int hio_unpack(hio_t* io, void* buf, int readbytes);
int hio_unpack_by_fixed_length(hio_t* io, void* buf, int readbytes);
int hio_unpack_by_delimiter(hio_t* io, void* buf, int readbytes);
int hio_unpack_by_length_field(hio_t* io, void* buf, int readbytes);
#endif // HV_UNPACK_H_