mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2026-01-09 18:05:49 +08:00
22 lines
267 B
C
22 lines
267 B
C
|
|
#ifndef LIBINJECTION_XSS
|
||
|
|
#define LIBINJECTION_XSS
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
/**
|
||
|
|
* HEY THIS ISN'T DONE
|
||
|
|
*/
|
||
|
|
|
||
|
|
/* pull in size_t */
|
||
|
|
|
||
|
|
#include <string.h>
|
||
|
|
|
||
|
|
int libinjection_is_xss(const char* s, size_t len, int flags);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
#endif
|