UA2F/src/util.h
2024-06-19 00:48:56 +08:00

13 lines
264 B
C

#ifndef UA2F_UTIL_H
#define UA2F_UTIL_H
#include <stdbool.h>
#include <string.h>
#define QUEUE_NUM 10010
void *memncasemem(const void *l, size_t l_len, const void *s, size_t s_len);
bool is_http_protocol(const char *p, unsigned int len);
#endif // UA2F_UTIL_H