1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-13 07:41:39 +03:00

Date/Time updates from Thomas...

This commit is contained in:
Marc G. Fournier
1997-03-14 23:21:12 +00:00
parent 71fd8d4a4b
commit 53d8be3bbf
19 changed files with 3380 additions and 1424 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/bool.c,v 1.2 1996/11/03 06:53:03 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/bool.c,v 1.3 1997/03/14 23:19:52 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@ -24,12 +24,12 @@
/*
* boolin - converts "t" or "f" to 1 or 0
*/
int32
bool
boolin(char *b)
{
if (b == NULL)
elog(WARN, "Bad input string for type bool");
return((int32) (*b == 't') || (*b == 'T'));
return((bool) (*b == 't') || (*b == 'T'));
}
/*
@ -49,13 +49,13 @@ boolout(long b)
* PUBLIC ROUTINES *
*****************************************************************************/
int32
bool
booleq(int8 arg1, int8 arg2)
{
return(arg1 == arg2);
}
int32
bool
boolne(int8 arg1, int8 arg2)
{
return(arg1 != arg2);