github.com/Konstantin8105/c4go@v0.0.0-20240505174241-768bb1c65a51/tests/locale.c (about) 1 #include "tests.h" 2 #include <locale.h> 3 4 int main() 5 { 6 plan(0);// 2); 7 // TODO: commented for github action 8 9 // setlocale(LC_MONETARY, ""); 10 // struct lconv* lc; 11 // lc = localeconv(); 12 // // Local Currency Symbol 13 // is_true(strlen(lc->currency_symbol) > 0); 14 // // International Currency Symbol 15 // is_true(strlen(lc->int_curr_symbol) > 0); 16 17 done_testing(); 18 }