#include #include #include #if ENABLE_NLS #include #define _(S) dgettext(PACKAGE, S) #else #define _(S) S #endif int main(int argc, char *argv[]) { APLWCFunctions fns; APLWC *aplwc; aplwc_boot(); if(argc != 1) puts(_("No command line arguments expected")); aplwc_init_fns(&fns); aplwc = aplwc_init(&fns, NULL); aplwc_exit(aplwc); return 0; }