diff options
author | converse <empty> | 1990-12-19 18:07:40 +0000 |
---|---|---|
committer | converse <empty> | 1990-12-19 18:07:40 +0000 |
commit | 3993399d5a2f0136a4c3fc826dce58e5c19aae05 (patch) | |
tree | b7a0670a096ae55f009927d8b17bac45a266ace4 /xc/lib/Xmu/CharSet.h | |
parent | 5b9f3a17adfafcbb5315ee783065f054c9ac40f8 (diff) |
added function prototypes
Diffstat (limited to 'xc/lib/Xmu/CharSet.h')
-rw-r--r-- | xc/lib/Xmu/CharSet.h | 34 |
1 files changed, 30 insertions, 4 deletions
diff --git a/xc/lib/Xmu/CharSet.h b/xc/lib/Xmu/CharSet.h index d4145e196..0e447925b 100644 --- a/xc/lib/Xmu/CharSet.h +++ b/xc/lib/Xmu/CharSet.h @@ -1,5 +1,5 @@ /* - * $XConsortium: CharSet.h,v 1.1 89/07/14 17:51:53 jim Exp $ + * $XConsortium: CharSet.h,v 1.2 89/09/22 15:33:14 jim Exp $ * * Copyright 1988 by the Massachusetts Institute of Technology * @@ -22,7 +22,33 @@ #ifndef _XMU_CHARSET_H_ #define _XMU_CHARSET_H_ -extern void XmuCopyISOLatin1Lowered(); -extern void XmuCopyISOLatin1Uppered(); -extern int XmuCompareISOLatin1(); +#ifdef __cplusplus +extern "C" { /* for C++ V2.0 */ +#endif + +extern void XmuCopyISOLatin1Lowered( +#if NeedFunctionPrototypes + char * /* dst_return */, + _Xconst char * /* src */ +#endif +); + +extern void XmuCopyISOLatin1Uppered( +#if NeedFunctionPrototypes + char * /* dst_return */, + _Xconst char * /* src */ +#endif +); + +extern int XmuCompareISOLatin1( +#if NeedFunctionPrototypes + _Xconst char * /* first */, + _Xconst char * /* second */ +#endif +); + +#ifdef __cplusplus +} /* for C++ V2.0 */ +#endif + #endif /* _XMU_CHARSET_H_ */ |