+#include <string.h>
#include <alloca.h>
#include <chise.h>
-int
+static int
+test_name_map_func (CHISE_DS *ds, unsigned char *name)
+{
+ printf ("feature : %s\n", name);
+ return 0;
+}
+
+static int
test_map_func (CHISE_Char_ID cid, CHISE_Feature_Table *db,
CHISE_Value *valdatum)
{
main (int argc, char* argv[])
{
CHISE_DS *ds;
+#if 0
CHISE_CCS ccs_daikanwa;
+#endif
CHISE_Feature ft_ideographic_structure;
CHISE_Feature ft_ascii;
int modemask = 0755; /* rwxr-xr-x */
DBTYPE real_subtype = DB_HASH;
- int status;
CHISE_Char_ID char_id;
- CHISE_Value value;
unsigned char buf[1024];
unsigned char *db_dir;
else
printf ("#x%X\n", char_id);
+ chise_ds_foreach_char_feature_name (ds, &test_name_map_func);
+
ft_ascii = chise_ds_get_feature (ds, "ascii");
- chise_char_feature_value_iterate (ft_ascii, &test_map_func);
- chise_char_feature_value_iterate (ft_ideographic_structure, &test_map_func);
+ chise_feature_foreach_char_with_value (ft_ascii, &test_map_func);
+ chise_feature_foreach_char_with_value
+ (ft_ideographic_structure, &test_map_func);
/* close the data-source */
CHISE_DS_close (ds);
+
+ return 0;
}