diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-07-28 07:08:15 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-07-28 07:08:15 +0000 |
commit | 7450ea6dfb7bc26ec6263082548c6f642fa9503c (patch) | |
tree | 20240d8e8d8b567f087e91ea779b2bb23735250d /src/bin/psql/stringutils.h | |
parent | 0e887c541e6a9062c0edcc07ad1015c76f369258 (diff) | |
download | postgresql-7450ea6dfb7bc26ec6263082548c6f642fa9503c.tar.gz postgresql-7450ea6dfb7bc26ec6263082548c6f642fa9503c.zip |
cosmetic changes: char* x changed to char *x
submitted by: bruce
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(); |