mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
Fix indenting in prototype declarations. No functional changes.
This commit is contained in:
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/utils/adt/datetime.c,v 1.51 2000/07/12 22:59:08 petere Exp $
|
* $Header: /cvsroot/pgsql/src/backend/utils/adt/datetime.c,v 1.52 2000/07/14 15:33:33 thomas Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -30,13 +30,13 @@
|
|||||||
#include "utils/datetime.h"
|
#include "utils/datetime.h"
|
||||||
|
|
||||||
static int DecodeNumber(int flen, char *field,
|
static int DecodeNumber(int flen, char *field,
|
||||||
int fmask, int *tmask,
|
int fmask, int *tmask,
|
||||||
struct tm * tm, double *fsec, int *is2digits);
|
struct tm * tm, double *fsec, int *is2digits);
|
||||||
static int DecodeNumberField(int len, char *str,
|
static int DecodeNumberField(int len, char *str,
|
||||||
int fmask, int *tmask,
|
int fmask, int *tmask,
|
||||||
struct tm * tm, double *fsec, int *is2digits);
|
struct tm * tm, double *fsec, int *is2digits);
|
||||||
static int DecodeTime(char *str, int fmask, int *tmask,
|
static int DecodeTime(char *str, int fmask, int *tmask,
|
||||||
struct tm * tm, double *fsec);
|
struct tm * tm, double *fsec);
|
||||||
static int DecodeTimezone(char *str, int *tzp);
|
static int DecodeTimezone(char *str, int *tzp);
|
||||||
static datetkn *datebsearch(char *key, datetkn *base, unsigned int nel);
|
static datetkn *datebsearch(char *key, datetkn *base, unsigned int nel);
|
||||||
static int DecodeDate(char *str, int fmask, int *tmask, struct tm * tm);
|
static int DecodeDate(char *str, int fmask, int *tmask, struct tm * tm);
|
||||||
|
Reference in New Issue
Block a user