Overhaul MainLoop input processing for quotes, comments, backslashes.

REL2_0B
Bruce Momjian 30 years ago
parent f64b840387
commit 0365c51e30
  1. 2732
      src/bin/psql/psql.c
  2. 7
      src/bin/psql/stringutils.c

File diff suppressed because it is too large Load Diff

@ -7,7 +7,7 @@
*
*
* 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 @@
/* 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 */
char *leftTrim(char *s)
{
char *s2 = s;

Loading…
Cancel
Save