/* ** Copyright 2007 Double Precision, Inc. ** See COPYING for distribution information. */ /* */ #include "cgi.h" #include #include #include #include char *cgi_checkbox(const char *name, const char *value, const char *flags) { char *buf; if (!value) value=""; buf=malloc(strlen(name)+strlen(flags)+200); if (!buf) return NULL; strcpy(buf, ""); return buf; }