diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-08-19 21:40:56 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-08-19 21:40:56 +0000 |
commit | 1d8bbfd2e7cfb72cbe4d5c5d4fa650a28dedac0b (patch) | |
tree | 8d3a5dac9207f22c3afb8afb563d54f88774deb3 /src/bin/psql/stringutils.h | |
parent | b992e200b8872ecb6652ec85111995f8d4c5aee0 (diff) | |
download | postgresql-1d8bbfd2e7cfb72cbe4d5c5d4fa650a28dedac0b.tar.gz postgresql-1d8bbfd2e7cfb72cbe4d5c5d4fa650a28dedac0b.zip |
Make functions static where possible, enclose unused functions in #ifdef NOT_USED.
Diffstat (limited to 'src/bin/psql/stringutils.h')
-rw-r--r-- | src/bin/psql/stringutils.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/bin/psql/stringutils.h b/src/bin/psql/stringutils.h index 11da94449ea..c6f037ec716 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.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(); |