diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-11-04 23:14:30 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-11-04 23:14:30 +0000 |
commit | 0e6652e67357354e01f2466184343d0bc0ee2cab (patch) | |
tree | 0c06450508417e033f8a2b90241a7126cd54c4fe /src/bin/psql/stringutils.h | |
parent | 2323b63631080b7d4c287872a83b0ea30bd7874a (diff) | |
download | postgresql-0e6652e67357354e01f2466184343d0bc0ee2cab.tar.gz postgresql-0e6652e67357354e01f2466184343d0bc0ee2cab.zip |
psql cleanup
Diffstat (limited to 'src/bin/psql/stringutils.h')
-rw-r--r-- | src/bin/psql/stringutils.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/bin/psql/stringutils.h b/src/bin/psql/stringutils.h index f505a7b2c14..5d72006c8ed 100644 --- a/src/bin/psql/stringutils.h +++ b/src/bin/psql/stringutils.h @@ -3,12 +3,11 @@ /* The cooler version of strtok() which knows about quotes and doesn't * overwrite your input */ -extern char * -strtokx(const char *s, - const char *delim, - const char *quote, - char escape, - char * was_quoted, - unsigned int * token_pos); +extern char *strtokx(const char *s, + const char *delim, + const char *quote, + char escape, + char *was_quoted, + unsigned int *token_pos); #endif /* STRINGUTILS_H */ |