Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/dist/src/c/demos/edit/search.h

    r5a6cc679 r28a5ebd  
    4141struct search;
    4242typedef struct search search_t;
    43 typedef bool (*search_equals_fn)(const wchar_t, const wchar_t);
    44 typedef errno_t (*search_producer_fn)(void *, wchar_t *);
     43typedef bool (*search_equals_fn)(const char32_t, const char32_t);
     44typedef errno_t (*search_producer_fn)(void *, char32_t *);
    4545typedef errno_t (*search_mark_fn)(void *, void **);
    4646typedef void (*search_mark_free_fn)(void *);
     
    5858} search_ops_t;
    5959
    60 extern bool char_exact_equals(const wchar_t, const wchar_t);
     60extern bool char_exact_equals(const char32_t, const char32_t);
    6161extern search_t *search_init(const char *, void *, search_ops_t, bool);
    6262extern errno_t search_next_match(search_t *, match_t *);
Note: See TracChangeset for help on using the changeset viewer.