/usr/include/c-lib/inc/asn-UTF8String.h is in libesnacc-dev 1.8.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | #ifndef _asn_UTF8String_h_
#define _asn_UTF8String_h_
#ifdef __cplusplus
extern "C" {
#endif
typedef AsnOcts UTF8String; /* [UNIVERSAL 12] IMPLICIT OCTET STRING */
AsnLen BEncUTF8String PROTO ((GenBuf *b, UTF8String *v));
AsnLen BEncUTF8StringContent PROTO ((GenBuf *b, UTF8String *octs));
void BDecUTF8String PROTO ((GenBuf *b, UTF8String *result, AsnLen *bytesDecoded, ENV_TYPE env));
void BDecUTF8StringContent PROTO ((GenBuf *b, AsnTag tagId, AsnLen len, UTF8String *result, AsnLen *bytesDecoded, ENV_TYPE env));
#define PrintUTF8String PrintAsnOcts
#define FreeUTF8String FreeAsnOcts
int CvtUTF8String2wchar(UTF8String *inOcts, wchar_t **outStr);
int CvtUTF8towchar(char *utf8Str, wchar_t **outStr);
int CvtWchar2UTF8(wchar_t *inStr, char **utf8Str);
#ifdef __cplusplus
}
#endif
#endif
|