aboutsummaryrefslogtreecommitdiff
path: root/src/bin/psql/stringutils.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-11-04 23:14:30 +0000
committerBruce Momjian <bruce@momjian.us>1999-11-04 23:14:30 +0000
commit0e6652e67357354e01f2466184343d0bc0ee2cab (patch)
tree0c06450508417e033f8a2b90241a7126cd54c4fe /src/bin/psql/stringutils.h
parent2323b63631080b7d4c287872a83b0ea30bd7874a (diff)
downloadpostgresql-0e6652e67357354e01f2466184343d0bc0ee2cab.tar.gz
postgresql-0e6652e67357354e01f2466184343d0bc0ee2cab.zip
psql cleanup
Diffstat (limited to 'src/bin/psql/stringutils.h')
-rw-r--r--src/bin/psql/stringutils.h13
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 */