static void fuzzy_lookup(Libs& libs, const gchar *s) { gchar *res[100]; const size_t res_size=sizeof(res)/sizeof(gchar *); libs.LookupWithFuzzy(s, res, res_size); std::for_each(res, res+res_size, g_free); }
static void fuzzy_lookup(Libs& libs, const gchar *s) { std::vector<InstantDictIndex> dictmask; gchar *res[100]; const size_t res_size=sizeof(res)/sizeof(gchar *); libs.LookupWithFuzzy(s, res, res_size, dictmask); std::for_each(res, res+res_size, g_free); }