X-Git-Url: https://git.distorted.org.uk/~mdw/fwd/blobdiff_plain/0d3d364b48292a4bd349b2dd096f060b1db21212..2234f01d91a8582111d3484e60fe1372f11df2db:/conf.h diff --git a/conf.h b/conf.h index 5b78b13..45791a4 100644 --- a/conf.h +++ b/conf.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: conf.h,v 1.5 1999/10/22 22:46:44 mdw Exp $ + * $Id: conf.h,v 1.6 2002/01/13 14:48:16 mdw Exp $ * * Configuration parsing * @@ -29,6 +29,10 @@ /*----- Revision history --------------------------------------------------* * * $Log: conf.h,v $ + * Revision 1.6 2002/01/13 14:48:16 mdw + * Make delimiters be a property of a scanner. Change the delimiter- + * changing functions' names. + * * Revision 1.5 1999/10/22 22:46:44 mdw * Improve documentation for conf_enum. * @@ -70,9 +74,10 @@ /*----- Functions provided ------------------------------------------------*/ -/* --- @undelim@ --- * +/* --- @conf_undelim@ --- * * - * Arguments: @const char *d, dd@ = pointer to characters to escape + * Arguments: @scanner *sc@ = pointer to scanner definition + * @const char *d, *dd@ = pointer to characters to escape * * Returns: --- * @@ -81,7 +86,8 @@ * second list will always be allowed to continue a word. */ -extern void undelim(const char */*d*/, const char */*dd*/); +extern void conf_undelim(scanner */*sc*/, + const char */*d*/, const char */*dd*/); /* --- @token@ --- * *