Neale Pickett
·
2012-10-30
strings.h
1#ifndef __STRINGS_H__
2#define __STRINGS_H__
3
4#include <stdio.h>
5
6int endswith(char *haystack, char *needle);
7void sanitize(char *s);
8size_t extract_header_field(char *buf, char **val, int cgi);
9int fromhex(int c);
10void html_esc(FILE *f, char *s);
11void url_esc(FILE *f, char *s);
12
13#endif