lci/unicode.h

21 lines
443 B
C

/** Data and functions for converting from Unicode normative names to
* codepoints.
*
* \file unicode.h
*
* \author Justin J. Meza
*
* \date 2010 */
#ifndef __UNICODE_H__
#define __UNICODE_H__
#include <stdio.h>
#include <string.h>
int binarySearch(const char **, int, int, const char *);
long convertNormativeNameToCodePoint(const char *);
size_t convertCodePointToUTF8(unsigned long, char *);
#endif /* __UNICODE_H_ */