XSugar Tools
beta
SoftwareTools for XML processing
|
00001 00008 #import <Coconut/Coconut.h> 00009 #import "xsg-common-opt.h" 00010 00014 struct XsgCatOption { 00016 struct XsgCommonOption commonOptions ; 00018 BOOL doMerge ; 00020 struct CNObjectList argumentList ; 00021 } ; 00022 00027 static inline void 00028 XsgCatInitOption(struct XsgCatOption * dst) 00029 { 00030 XsgInitCommonOption(&(dst->commonOptions)) ; 00031 dst->doMerge = FALSE ; 00032 CNInitObjectList(&(dst->argumentList)) ; 00033 } 00034 00042 BOOL 00043 XsgCatParseCommandLine(struct XsgCatOption * dst, int argc, const char *argv[], struct CNResource * resource) ; 00044 00045