chiark / gitweb /
url: Whitespace cleanups.
[mLib] / str.c
diff --git a/str.c b/str.c
index 711ccf789f68b6c88e917a8f1b89bbb2f7847a9f..6423a4f79ce570abfce8556fc671b2e685b4df54 100644 (file)
--- a/str.c
+++ b/str.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: str.c,v 1.4 2000/10/08 09:43:34 mdw Exp $
+ * $Id: str.c,v 1.6 2004/04/08 01:36:13 mdw Exp $
  *
  * Functions for hacking with strings
  *
  * MA 02111-1307, USA.
  */
 
-/*----- Revision history --------------------------------------------------* 
- *
- * $Log: str.c,v $
- * Revision 1.4  2000/10/08 09:43:34  mdw
- * New quoted string handling and simple pattern matching.
- *
- * Revision 1.3  1999/12/22 15:41:14  mdw
- * Skip past trailing whitespace in str_getword.
- *
- * Revision 1.2  1999/05/26 20:52:57  mdw
- * Add new `rest' argument for `str_split'.
- *
- * Revision 1.1  1999/05/17 20:37:01  mdw
- * Some trivial string hacks.
- *
- */
-
 /*----- Header files ------------------------------------------------------*/
 
 #include <ctype.h>
@@ -68,8 +51,6 @@
  *             single and double quotes protect whitespace.
  */
 
-#define STRF_QUOTE 1u
-
 char *str_qword(char **pp, unsigned f)
 {
   char *p = *pp, *q, *qq;