Searched refs:al_ustr_insert_chr (Results 1 – 5 of 5) sorted by relevance
/dports/devel/allegro5/allegro5-5.2.7.0/examples/ |
H A D | ex_utf8.c | 404 CHECK(al_ustr_insert_chr(us, 0, 'a') == 1); in t19() 405 CHECK(al_ustr_insert_chr(us, 0, U_ae) == 2); in t19() 406 CHECK(al_ustr_insert_chr(us, 2, U_euro) == 3); in t19() 410 CHECK(al_ustr_insert_chr(us, 8, U_o_dia) == 2); in t19() 414 CHECK(al_ustr_insert_chr(us, 0, -1) == 0); in t19() 415 CHECK(al_ustr_insert_chr(us, 0, 0x110000) == 0); in t19()
|
H A D | nihgui.cpp | 814 al_ustr_insert_chr(text, cursor_pos, event.unichar); in on_key_down()
|
/dports/devel/allegro5/allegro5-5.2.7.0/include/allegro5/ |
H A D | utf8.h | 66 AL_FUNC(size_t, al_ustr_insert_chr, (ALLEGRO_USTR *us, int pos, int32_t c));
|
/dports/devel/allegro5/allegro5-5.2.7.0/src/ |
H A D | utf8.c | 421 size_t al_ustr_insert_chr(ALLEGRO_USTR *us, int pos, int32_t c) in al_ustr_insert_chr() function 469 return al_ustr_insert_chr(us, al_ustr_size(us), c); in al_ustr_append_chr()
|
/dports/devel/allegro5/allegro5-5.2.7.0/addons/native_dialog/ |
H A D | win_dialog.c | 410 al_ustr_insert_chr(s, pos, '\r'); in convert_crlf()
|