/* * * National character set routines. */ #ifndef _NCS$ROUTINES_H #define _NCS$ROUTINES_H # ifdef __cplusplus extern "C" { # endif /* NCS$COMPARE -- Compare Strings */ int ncs$compare(const unsigned long *,const void *,const void *); /* NCS$CONVERT -- Convert String */ unsigned long ncs$convert(const unsigned long *,const void *,void *,...); /* NCS$END_CF -- End Conversion Function */ unsigned long ncs$end_cf(unsigned long *); /* NCS$END_CS -- End Collating Sequence */ unsigned long ncs$end_cs(unsigned long *); /* NCS$GET_CF -- Get Conversion Function */ unsigned long ncs$get_cf(unsigned long *,...); /* NCS$GET_CS -- Get Collating Sequence */ unsigned long ncs$get_cs(unsigned long *,...); /* NCS$RESTORE_CF -- Restore Conversion Function */ unsigned long ncs$restore_cf(unsigned long *,...); /* NCS$RESTORE_CS -- Restore Collating Sequence */ unsigned long ncs$restore_cs(unsigned long *,...); /* NCS$SAVE_CF -- Save Conversion Function */ unsigned long ncs$save_cf(const unsigned long *,...); /* NCS$SAVE_CS -- Save Collating Sequence */ unsigned long ncs$save_cs(const unsigned long *,...);; # ifdef __cplusplus } # endif #endif /*_NCS$ROUTINES_H*/