Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/edit/search.h

    r5a6cc679 r28a5ebd  
    4242struct search;
    4343typedef struct search search_t;
    44 typedef bool (*search_equals_fn)(const wchar_t, const wchar_t);
    45 typedef errno_t (*search_producer_fn)(void *, wchar_t *);
     44typedef bool (*search_equals_fn)(const char32_t, const char32_t);
     45typedef errno_t (*search_producer_fn)(void *, char32_t *);
    4646typedef errno_t (*search_mark_fn)(void *, void **);
    4747typedef void (*search_mark_free_fn)(void *);
     
    5959} search_ops_t;
    6060
    61 extern bool char_exact_equals(const wchar_t, const wchar_t);
     61extern bool char_exact_equals(const char32_t, const char32_t);
    6262extern search_t *search_init(const char *, void *, search_ops_t, bool);
    6363extern errno_t search_next_match(search_t *, match_t *);
Note: See TracChangeset for help on using the changeset viewer.