/*
 * $Id: www.h,v 1.2 1996/01/26 16:37:22 daveho Exp paulr $
 * library routines for cgi-bin programs
 */

#ifndef WWW_H
#define WWW_H

void print_html(const char *fmt, ...);
int verify_password(const char *password, const char *username);
char *get_post_args(void);
char *getval(const char *args, const char *var);
char *html_unescapify(const char *str);
int verify_real_uid(const char *username);

#endif
