Fixed some style bugs in the removal of __P(()). Some function parameter

lists were outdented to column 0.
This commit is contained in:
bde 2002-03-26 01:35:05 +00:00
parent 4941686e50
commit 2c14ede5e3
4 changed files with 6 additions and 8 deletions

View File

@ -122,9 +122,9 @@ typedef struct {
int minkeypage; /* minimum keys per page */ int minkeypage; /* minimum keys per page */
u_int psize; /* page size */ u_int psize; /* page size */
int (*compare) /* comparison function */ int (*compare) /* comparison function */
(const DBT *, const DBT *); (const DBT *, const DBT *);
size_t (*prefix) /* prefix function */ size_t (*prefix) /* prefix function */
(const DBT *, const DBT *); (const DBT *, const DBT *);
int lorder; /* byte order */ int lorder; /* byte order */
} BTREEINFO; } BTREEINFO;

View File

@ -47,7 +47,7 @@ typedef struct {
int fts_pathlen; /* sizeof(path) */ int fts_pathlen; /* sizeof(path) */
int fts_nitems; /* elements in the sort array */ int fts_nitems; /* elements in the sort array */
int (*fts_compar) /* compare function */ int (*fts_compar) /* compare function */
(const struct _ftsent **, const struct _ftsent **); (const struct _ftsent **, const struct _ftsent **);
#define FTS_COMFOLLOW 0x001 /* follow command line symlinks */ #define FTS_COMFOLLOW 0x001 /* follow command line symlinks */
#define FTS_LOGICAL 0x002 /* logical walk */ #define FTS_LOGICAL 0x002 /* logical walk */

View File

@ -80,10 +80,8 @@ typedef struct {
char magic[8]; /* Magic saying what version we are */ char magic[8]; /* Magic saying what version we are */
char encoding[32]; /* ASCII name of this encoding */ char encoding[32]; /* ASCII name of this encoding */
rune_t (*sgetrune) rune_t (*sgetrune)(const char *, size_t, char const **);
(const char *, size_t, char const **); int (*sputrune)(rune_t, char *, size_t, char **);
int (*sputrune)
(rune_t, char *, size_t, char **);
rune_t invalid_rune; rune_t invalid_rune;
unsigned long runetype[_CACHED_RUNES]; unsigned long runetype[_CACHED_RUNES];

View File

@ -47,7 +47,7 @@ typedef struct {
int fts_pathlen; /* sizeof(path) */ int fts_pathlen; /* sizeof(path) */
int fts_nitems; /* elements in the sort array */ int fts_nitems; /* elements in the sort array */
int (*fts_compar) /* compare function */ int (*fts_compar) /* compare function */
(const struct _ftsent **, const struct _ftsent **); (const struct _ftsent **, const struct _ftsent **);
#define FTS_COMFOLLOW 0x001 /* follow command line symlinks */ #define FTS_COMFOLLOW 0x001 /* follow command line symlinks */
#define FTS_LOGICAL 0x002 /* logical walk */ #define FTS_LOGICAL 0x002 /* logical walk */