1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-08 11:42:09 +03:00

Make functions static where possible, enclose unused functions in #ifdef NOT_USED.

This commit is contained in:
Bruce Momjian
1997-08-19 21:40:56 +00:00
parent b992e200b8
commit 1d8bbfd2e7
186 changed files with 1114 additions and 1048 deletions

View File

@ -5,7 +5,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: stringutils.h,v 1.3 1996/11/26 03:20:08 bryanh Exp $
* $Id: stringutils.h,v 1.4 1997/08/19 21:36:58 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -27,9 +27,7 @@
/* 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);
#ifdef STRINGUTILS_TEST
extern void testStringUtils();