diff options
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 */ |