2010-06-03 21:24:43 +08:00
|
|
|
/*********************************************************************
|
2018-12-07 06:36:53 +08:00
|
|
|
* Copyright 2018, UCAR/Unidata
|
2010-06-03 21:24:43 +08:00
|
|
|
* See netcdf/COPYRIGHT file for copying and redistribution conditions.
|
2018-01-18 00:20:20 +08:00
|
|
|
* Russ Rew
|
2010-06-03 21:24:43 +08:00
|
|
|
*********************************************************************/
|
2018-01-18 00:20:20 +08:00
|
|
|
#ifndef _INDENT_H
|
|
|
|
#define _INDENT_H
|
2010-06-03 21:24:43 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Handle nested group indentation */
|
|
|
|
extern void indent_init(); /* initialize indent to zero */
|
|
|
|
extern void indent_out(); /* output current indent */
|
|
|
|
extern void indent_more(); /* increment current indent */
|
|
|
|
extern void indent_less(); /* decrement current indent */
|
|
|
|
extern int indent_get(); /* return current indent */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2018-01-18 00:20:20 +08:00
|
|
|
|
|
|
|
#endif /* _INDENT_H */
|