milsko/include/Mw/Abstract/CharSet.h
IoI_xD c705d2b98c
Some checks failed
pyrite-dev/milsko/pipeline/head There was a failure building this commit
generate pkgconfig file (don't commit yet i fucked it up)
2026-07-15 17:32:53 -07:00

22 lines
353 B
C

/*!
* @file Mw/Abstract/CharSet.h
* @brief CharSet
*/
#ifndef __MW_ABSTRACT_CHARSET_H__
#define __MW_ABSTRACT_CHARSET_H__
#include <Mw/MachDep.h>
#ifdef __cplusplus
extern "C" {
#endif
MWDECL char* MWAPI MwACPToUTF8(const char* input);
MWDECL char* MWAPI MwUTF8ToACP(const char* input);
#ifdef __cplusplus
}
#endif
#endif