From 7450ea6dfb7bc26ec6263082548c6f642fa9503c Mon Sep 17 00:00:00 2001 From: Marc G. Fournier Date: Sun, 28 Jul 1996 07:08:15 +0000 Subject: cosmetic changes: char* x changed to char *x submitted by: bruce --- src/bin/psql/stringutils.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/bin/psql/stringutils.h') 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(); -- cgit v1.2.3