Ignore:
File:
1 edited

Legend:

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

    rb7fd2a0 r70b570c  
    4242typedef struct search search_t;
    4343typedef bool (*search_equals_fn)(const wchar_t, const wchar_t);
    44 typedef errno_t (*search_producer_fn)(void *, wchar_t *);
    45 typedef errno_t (*search_mark_fn)(void *, void **);
     44typedef int (*search_producer_fn)(void *, wchar_t *);
     45typedef int (*search_mark_fn)(void *, void **);
    4646typedef void (*search_mark_free_fn)(void *);
    4747
     
    6060extern bool char_exact_equals(const wchar_t, const wchar_t);
    6161extern search_t *search_init(const char *, void *, search_ops_t, bool);
    62 extern errno_t search_next_match(search_t *, match_t *);
     62extern int search_next_match(search_t *, match_t *);
    6363extern void search_fini(search_t *);
    6464
Note: See TracChangeset for help on using the changeset viewer.