macro whitespace cleanup in util/sfexpasc.c
This commit is contained in:
@@ -85,55 +85,55 @@ void exportascii_sfi_cnt(NHFILE *nhfp, char *d_str, const char *myname UNUSED, i
|
|||||||
}
|
}
|
||||||
|
|
||||||
#define SF_A(dtyp) \
|
#define SF_A(dtyp) \
|
||||||
void exportascii_sfo_##dtyp(NHFILE *, dtyp *d_##dtyp, \
|
void exportascii_sfo_##dtyp(NHFILE *, dtyp *d_##dtyp, \
|
||||||
const char *); \
|
const char *); \
|
||||||
void exportascii_sfi_##dtyp(NHFILE *, dtyp *d_##dtyp, \
|
void exportascii_sfi_##dtyp(NHFILE *, dtyp *d_##dtyp, \
|
||||||
const char *);
|
const char *);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
void exportascii_sfo_##dtyp(NHFILE *nhfp, dtyp *d_##dtyp, \
|
void exportascii_sfo_##dtyp(NHFILE *nhfp, dtyp *d_##dtyp, \
|
||||||
const char *myname UNUSED) \
|
const char *myname UNUSED) \
|
||||||
SFO_BODY(dtyp) \
|
SFO_BODY(dtyp) \
|
||||||
\
|
\
|
||||||
void exportascii_sfi_##dtyp(NHFILE *nhfp, dtyp *d_##dtyp, \
|
void exportascii_sfi_##dtyp(NHFILE *nhfp, dtyp *d_##dtyp, \
|
||||||
const char *myname UNUSED) \
|
const char *myname UNUSED) \
|
||||||
SFI_BODY(dtyp)
|
SFI_BODY(dtyp)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define SF_C(keyw, dtyp) \
|
#define SF_C(keyw, dtyp) \
|
||||||
void exportascii_sfo_##dtyp(NHFILE * UNUSED, keyw dtyp *d_##dtyp UNUSED, \
|
void exportascii_sfo_##dtyp(NHFILE * UNUSED, keyw dtyp *d_##dtyp UNUSED, \
|
||||||
const char *); \
|
const char *); \
|
||||||
void exportascii_sfi_##dtyp(NHFILE *UNUSED, keyw dtyp *d_##dtyp, \
|
void exportascii_sfi_##dtyp(NHFILE *UNUSED, keyw dtyp *d_##dtyp, \
|
||||||
const char *); \
|
const char *); \
|
||||||
\
|
\
|
||||||
void exportascii_sfo_##dtyp(NHFILE *nhfp UNUSED, keyw dtyp *d_##dtyp UNUSED, \
|
void exportascii_sfo_##dtyp(NHFILE *nhfp UNUSED, keyw dtyp *d_##dtyp UNUSED, \
|
||||||
const char *myname UNUSED) \
|
const char *myname UNUSED) \
|
||||||
SFO_BODY(dtyp) \
|
SFO_BODY(dtyp) \
|
||||||
\
|
\
|
||||||
void exportascii_sfi_##dtyp(NHFILE *nhfp UNUSED, keyw dtyp *d_##dtyp UNUSED, \
|
void exportascii_sfi_##dtyp(NHFILE *nhfp UNUSED, keyw dtyp *d_##dtyp UNUSED, \
|
||||||
const char *myname UNUSED) \
|
const char *myname UNUSED) \
|
||||||
SFI_BODY(dtyp)
|
SFI_BODY(dtyp)
|
||||||
|
|
||||||
|
|
||||||
#define SF_X(xxx, dtyp) \
|
#define SF_X(xxx, dtyp) \
|
||||||
void exportascii_sfo_##dtyp(NHFILE * UNUSED, xxx *d_##dtyp UNUSED, \
|
void exportascii_sfo_##dtyp(NHFILE * UNUSED, xxx *d_##dtyp UNUSED, \
|
||||||
const char * UNUSED); \
|
const char * UNUSED); \
|
||||||
void exportascii_sfi_##dtyp(NHFILE *, xxx *d_##dtyp, \
|
void exportascii_sfi_##dtyp(NHFILE *, xxx *d_##dtyp, \
|
||||||
const char *); \
|
const char *); \
|
||||||
\
|
\
|
||||||
void exportascii_sfo_##dtyp(NHFILE *nhfp UNUSED, xxx *d_##dtyp UNUSED, \
|
void exportascii_sfo_##dtyp(NHFILE *nhfp UNUSED, xxx *d_##dtyp UNUSED, \
|
||||||
const char *myname UNUSED) \
|
const char *myname UNUSED) \
|
||||||
SFO_BODY(dtyp) \
|
SFO_BODY(dtyp) \
|
||||||
\
|
\
|
||||||
void exportascii_sfi_##dtyp(NHFILE *nhfp, xxx *d_##dtyp, \
|
void exportascii_sfi_##dtyp(NHFILE *nhfp, xxx *d_##dtyp, \
|
||||||
const char *myname UNUSED) \
|
const char *myname UNUSED) \
|
||||||
SFI_BODY(dtyp)
|
SFI_BODY(dtyp)
|
||||||
|
|
||||||
|
|
||||||
#define SF_BF(xxx, dtyp) \
|
#define SF_BF(xxx, dtyp) \
|
||||||
void exportascii_sfo_##dtyp(NHFILE *, xxx *d_##dtyp, \
|
void exportascii_sfo_##dtyp(NHFILE *, xxx *d_##dtyp, \
|
||||||
const char *, int); \
|
const char *, int); \
|
||||||
void exportascii_sfi_##dtyp(NHFILE *, xxx *d_##dtyp, \
|
void exportascii_sfi_##dtyp(NHFILE *, xxx *d_##dtyp, \
|
||||||
const char *, int);
|
const char *, int);
|
||||||
|
|
||||||
SF_C(struct, arti_info)
|
SF_C(struct, arti_info)
|
||||||
|
|||||||
Reference in New Issue
Block a user