root/trunk/cgi.h

Revision 166, 474 bytes (checked in by Dylan, 3 years ago)

unxsVZ and unxsBind propset for Id set. Added unxsVZ.tDatacenter backend test reports for in progress datacenter health and
UBC consistency checking.

  • Property svn:keywords set to id
Line 
1/*
2FILE
3        $Id$
4LEGAL
5        Public Domain. See cgi.c file for more info
6*/
7
8typedef struct {
9    char *name;
10    char *val;
11} pentry;
12
13typedef struct {
14    char name[128];
15    char val[128];
16} entry;
17
18void getword(char *word, char *line, char stop);
19char x2c(char *what);
20void unescape_url(char *url);
21void plustospace(char *str);
22void spacetoplus(char *str);
23char *makeword(char *line, char stop);
24char *fmakeword(FILE *f, char stop, int *len);
25void escape_shell_cmd(char *cmd);
Note: See TracBrowser for help on using the browser.