diff options
Diffstat (limited to 'src/backend/utils/adt/bool.c')
-rw-r--r-- | src/backend/utils/adt/bool.c | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/src/backend/utils/adt/bool.c b/src/backend/utils/adt/bool.c index cb9163f020f..d02661efa67 100644 --- a/src/backend/utils/adt/bool.c +++ b/src/backend/utils/adt/bool.c @@ -1,74 +1,74 @@ /*------------------------------------------------------------------------- * * bool.c-- - * Functions for the built-in type "bool". + * Functions for the built-in type "bool". * * Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/adt/bool.c,v 1.4 1997/04/27 19:20:07 thomas Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/bool.c,v 1.5 1997/09/07 04:49:58 momjian Exp $ * *------------------------------------------------------------------------- */ #include "postgres.h" -#include "utils/builtins.h" /* where the declarations go */ +#include "utils/builtins.h" /* where the declarations go */ #include "utils/palloc.h" -/***************************************************************************** - * USER I/O ROUTINES * +/***************************************************************************** + * USER I/O ROUTINES * *****************************************************************************/ /* - * boolin - converts "t" or "f" to 1 or 0 + * boolin - converts "t" or "f" to 1 or 0 */ bool boolin(char *b) { - if (b == NULL) - elog(WARN, "Bad input string for type bool"); - return((bool) (*b == 't') || (*b == 'T')); + if (b == NULL) + elog(WARN, "Bad input string for type bool"); + return ((bool) (*b == 't') || (*b == 'T')); } /* - * boolout - converts 1 or 0 to "t" or "f" + * boolout - converts 1 or 0 to "t" or "f" */ -char * +char * boolout(long b) { - char *result = (char *) palloc(2); - - *result = (b) ? 't' : 'f'; - result[1] = '\0'; - return(result); + char *result = (char *) palloc(2); + + *result = (b) ? 't' : 'f'; + result[1] = '\0'; + return (result); } -/***************************************************************************** - * PUBLIC ROUTINES * +/***************************************************************************** + * PUBLIC ROUTINES * *****************************************************************************/ bool -booleq(int8 arg1, int8 arg2) -{ - return(arg1 == arg2); +booleq(int8 arg1, int8 arg2) +{ + return (arg1 == arg2); } bool -boolne(int8 arg1, int8 arg2) +boolne(int8 arg1, int8 arg2) { - return(arg1 != arg2); + return (arg1 != arg2); } bool -boollt(int8 arg1, int8 arg2) -{ - return(arg1 < arg2); +boollt(int8 arg1, int8 arg2) +{ + return (arg1 < arg2); } bool -boolgt(int8 arg1, int8 arg2) -{ - return(arg1 > arg2); +boolgt(int8 arg1, int8 arg2) +{ + return (arg1 > arg2); } |