Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
070d4944
Commit
070d4944
authored
27 years ago
by
Thomas G. Lockhart
Browse files
Options
Downloads
Patches
Plain Diff
Clean up function declarations for the boolean type package
to use bool as the type for arguments and return values.
parent
a21c3e35
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/include/utils/builtins.h
+6
-6
6 additions, 6 deletions
src/include/utils/builtins.h
with
6 additions
and
6 deletions
src/include/utils/builtins.h
+
6
−
6
View file @
070d4944
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: builtins.h,v 1.2
6
1997/
09/20 16:24:39
thomas Exp $
* $Id: builtins.h,v 1.2
7
1997/
10/09 05:07:25
thomas Exp $
*
*
* NOTES
* NOTES
* This should normally only be included by fmgr.h.
* This should normally only be included by fmgr.h.
...
@@ -30,11 +30,11 @@
...
@@ -30,11 +30,11 @@
*/
*/
/* bool.c */
/* bool.c */
extern
bool
boolin
(
char
*
b
);
extern
bool
boolin
(
char
*
b
);
extern
char
*
boolout
(
long
b
);
extern
char
*
boolout
(
bool
b
);
extern
bool
booleq
(
int8
arg1
,
int8
arg2
);
extern
bool
booleq
(
bool
arg1
,
bool
arg2
);
extern
bool
boolne
(
int8
arg1
,
int8
arg2
);
extern
bool
boolne
(
bool
arg1
,
bool
arg2
);
extern
bool
boollt
(
int8
arg1
,
int8
arg2
);
extern
bool
boollt
(
bool
arg1
,
bool
arg2
);
extern
bool
boolgt
(
int8
arg1
,
int8
arg2
);
extern
bool
boolgt
(
bool
arg1
,
bool
arg2
);
/* char.c */
/* char.c */
extern
int32
charin
(
char
*
ch
);
extern
int32
charin
(
char
*
ch
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment