mirror of
https://github.com/kenzok8/small-package.git
synced 2026-01-19 13:48:08 +08: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
|