1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-30 21:42:05 +03:00

Renaming cleanup, no pgindent yet.

This commit is contained in:
Bruce Momjian
1998-09-01 03:29:17 +00:00
parent 2aa080fc93
commit af74855a60
329 changed files with 4380 additions and 4388 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/misc.c,v 1.13 1998/06/09 19:20:59 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/misc.c,v 1.14 1998/09/01 03:26:07 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -28,9 +28,9 @@ nullvalue(Datum value, bool *isNull)
if (*isNull)
{
*isNull = false;
return (true);
return true;
}
return (false);
return false;
}
@ -43,9 +43,9 @@ nonnullvalue(Datum value, bool *isNull)
if (*isNull)
{
*isNull = false;
return (false);
return false;
}
return (true);
return true;
}
@ -105,5 +105,5 @@ oidsrand(int32 X)
int32
userfntest(int i)
{
return (i);
return i;
}