diff options
Diffstat (limited to 'src/bin/psql/stringutils.h')
-rw-r--r-- | src/bin/psql/stringutils.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/bin/psql/stringutils.h b/src/bin/psql/stringutils.h index d8564a02d08..f5140469d68 100644 --- a/src/bin/psql/stringutils.h +++ b/src/bin/psql/stringutils.h @@ -5,7 +5,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: stringutils.h,v 1.1.1.1 1996/07/09 06:22:16 scrappy Exp $ + * $Id: stringutils.h,v 1.2 1996/07/28 07:08:15 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -27,14 +27,14 @@ /* removes whitespaces from the left, right and both sides of a string */ /* MODIFIES the string passed in and returns the head of it */ -extern char* leftTrim(char* s); -extern char* rightTrim(char* s); -extern char* doubleTrim(char* s); +extern char *leftTrim(char *s); +extern char *rightTrim(char *s); +extern char *doubleTrim(char *s); /* dupstr : copies a string, while making room for it */ /* the CALLER is responsible for freeing the space */ /* returns NULL if the argument is NULL */ -extern char* dupstr(char *s); +extern char *dupstr(char *s); #ifdef STRINGUTILS_TEST extern void testStringUtils(); |