/* ***************************************************************************** * * $RCSfile: strutil.h,v $ * $Date: 1998/05/18 13:38:17 $ * $Source: /home/richard/Xml/RCS/strutil.h,v $ * $Revision: 1.6 $ * $Author: richard $ * ***************************************************************************** * * Copyright 1998, Brown University and Richard Goerwitz * ***************************************************************************** * * This (very short) file presents the external interface to * strutil.c to modules that include it. For further details, see * strutil.c. * ***************************************************************************** */ #include "general.h" extern char *any (char *, char *); extern char *trimhash (char *); extern char *get_string (char *); /* holds a pointer to the last char looked at by snarf_string() */ extern char *snarfed_string_endpoint; extern char *snarf_string (char *); extern char *trimhash_no_quotes_or_backslash (char *); extern char *trim (char *, char *); extern char *strip (char *, char *); extern char *downcase (char *); extern char *truncate_to (char *, size_t); extern char *replace (char *, char *, char *);