Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
0365c51e
Commit
0365c51e
authored
Nov 14, 1996
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Overhaul MainLoop input processing for quotes, comments, backslashes.
parent
f64b8403
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1391 additions
and
1348 deletions
+1391
-1348
src/bin/psql/psql.c
src/bin/psql/psql.c
+1386
-1346
src/bin/psql/stringutils.c
src/bin/psql/stringutils.c
+5
-2
No files found.
src/bin/psql/psql.c
View file @
0365c51e
This diff is collapsed.
Click to expand it.
src/bin/psql/stringutils.c
View file @
0365c51e
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment