Abandoned

Since infogami has been abandoned by its creators, I’m out too. Back to web.fisher.cx for me. Everything that was here is there.

Robert Fisher

Just thinking out loud

C i18n

If you register and log in you can add comments to my pages. If viewing the main blog page, click the # underneath an entry to comment on it.

  • Don't forget to call setlocate(LC_ALL, "").
  • Just use wide characters. The library doesn't provide many functions for manipulating multibyte characters. The wide character I/O functions will handle multibyte↔wide character conversions(?).
  • Wide character literals & string literals are prefixed with L: wchar_t c = L'a'; wchar_t *p =L"string";`
  • Use %lc or %C and %ls or %S with the wide character versions of printf(). (Are %C & %S standard?)