uemf_utf.h revision 1df6105803c4c56c020a56301c7c9c4890fd4158
/**
@file uemf_utf.h
@brief Prototypes for functions that manipulate UTF and various types of text.
*/
/*
File: uemf_utf.h
Version: 0.0.1
Date: 04-DEC-2012
Author: David Mathog, Biology Division, Caltech
email: mathog@caltech.edu
Copyright: 2012 David Mathog and California Institute of Technology (Caltech)
*/
#ifndef _UEMF_UTF_
#define _UEMF_UTF_
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
#include <stdbool.h>
#include "uemf_endian.h"
void wchar8show(const char *src);
char *U_strdup(const char *s);
#ifdef __cplusplus
}
#endif
#endif /* _UEMF_UTF_ */