mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
33 lines
524 B
Sed
33 lines
524 B
Sed
s/NCSTREAM_H/NCSTREAMX_H/
|
|
/[#]define[ ]*NCSTREAMX_H/a\
|
|
\
|
|
typedef enum Sort {\
|
|
_Null = 0,\
|
|
_Attribute = 1,\
|
|
_Dimension = 2,\
|
|
_Variable = 3,\
|
|
_Structure = 4,\
|
|
_EnumTypedef = 5,\
|
|
_EnumType = 6,\
|
|
_Group = 7,\
|
|
_Header = 8,\
|
|
_Data = 9,\
|
|
_Range = 10,\
|
|
_Section = 11,\
|
|
_StructureData = 12,\
|
|
_Error = 13\
|
|
} Sort;\
|
|
\
|
|
\
|
|
typedef struct Notes {\
|
|
int uid; \
|
|
Sort sort; \
|
|
int ncid; \
|
|
} Notes;\
|
|
|
|
/^struct[ ][ ]*[a-zA-Z0-9_$]*[ ]*[{]/a\
|
|
Notes notes;
|
|
|
|
#/^[}][;]/i\
|
|
# Notes notes;
|