uconvert_toascii
Converts strings from the current format into ASCII. Allegro game programming library.
- Provided by: allegro4-doc (Version: 2:4.4.3.1-4.1build3)
- Source: allegro4.4
- Report a bug
Converts strings from the current format into ASCII. Allegro game programming library.
#include <allegro.h>
char *uconvert_toascii(const char *s, char buf[]);
Helper macro for converting strings from the current encoding format into ASCII. Expands to uconvert(s, U_CURRENT, buf, U_ASCII, sizeof(buf)).
uconvert(3alleg4)