Commit 0365c51e authored by Bruce Momjian's avatar Bruce Momjian

Overhaul MainLoop input processing for quotes, comments, backslashes.

parent f64b8403
This diff is collapsed.
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/psql/stringutils.c,v 1.4 1996/09/16 06:06:17 scrappy Exp $ * $Header: /cvsroot/pgsql/src/bin/psql/stringutils.c,v 1.5 1996/11/14 16:08:05 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -19,8 +19,11 @@ ...@@ -19,8 +19,11 @@
/* all routines assume null-terminated strings! */ /* all routines assume null-terminated strings! */
/* removes whitespaces from the left, right and both sides of a string */ /* The following routines remove whitespaces from the left, right
and both sides of a string */
/* MODIFIES the string passed in and returns the head of it */ /* MODIFIES the string passed in and returns the head of it */
char *leftTrim(char *s) char *leftTrim(char *s)
{ {
char *s2 = s; char *s2 = s;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment