Ignore:
File:
1 edited

Legend:

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

    rb7fd2a0 r23c8acd9  
    4343typedef struct search search_t;
    4444typedef bool (*search_equals_fn)(const wchar_t, const wchar_t);
    45 typedef errno_t (*search_producer_fn)(void *, wchar_t *);
    46 typedef errno_t (*search_mark_fn)(void *, void **);
     45typedef int (*search_producer_fn)(void *, wchar_t *);
     46typedef int (*search_mark_fn)(void *, void **);
    4747typedef void (*search_mark_free_fn)(void *);
    4848
     
    6161extern bool char_exact_equals(const wchar_t, const wchar_t);
    6262extern search_t *search_init(const char *, void *, search_ops_t, bool);
    63 extern errno_t search_next_match(search_t *, match_t *);
     63extern int search_next_match(search_t *, match_t *);
    6464extern void search_fini(search_t *);
    6565
Note: See TracChangeset for help on using the changeset viewer.