mirror of
https://github.com/Zxilly/UA2F.git
synced 2026-01-04 09:33:37 +00:00
13 lines
264 B
C
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
|