enhanced qse_getnwifcfg() for linux.

added qse_mbshextobin(), qse_wcshextobin()
This commit is contained in:
2014-08-30 05:40:57 +00:00
parent 477dc278c2
commit 46f13c54b3
14 changed files with 554 additions and 107 deletions

View File

@ -271,12 +271,12 @@ static int handle_args (int argc, qse_char_t* argv[])
break;
case QSE_T('m'):
g_memlimit = qse_strtoulong (opt.arg);
g_memlimit = qse_strtoulong (opt.arg, 10);
break;
#if defined(QSE_BUILD_DEBUG)
case QSE_T('X'):
g_failmalloc = qse_strtoulong (opt.arg);
g_failmalloc = qse_strtoulong (opt.arg, 10);
break;
#endif