mirror of
https://github.com/postgres/postgres.git
synced 2025-07-08 11:42:09 +03:00
cosmetic changes: char* x changed to char *x
submitted by: bruce
This commit is contained in:
@ -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();
|
||||
|
Reference in New Issue
Block a user