Changes in uspace/app/edit/search.h [23c8acd9:b7fd2a0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/edit/search.h
r23c8acd9 rb7fd2a0 43 43 typedef struct search search_t; 44 44 typedef bool (*search_equals_fn)(const wchar_t, const wchar_t); 45 typedef int (*search_producer_fn)(void *, wchar_t *);46 typedef int (*search_mark_fn)(void *, void **);45 typedef errno_t (*search_producer_fn)(void *, wchar_t *); 46 typedef errno_t (*search_mark_fn)(void *, void **); 47 47 typedef void (*search_mark_free_fn)(void *); 48 48 … … 61 61 extern bool char_exact_equals(const wchar_t, const wchar_t); 62 62 extern search_t *search_init(const char *, void *, search_ops_t, bool); 63 extern int search_next_match(search_t *, match_t *);63 extern errno_t search_next_match(search_t *, match_t *); 64 64 extern void search_fini(search_t *); 65 65
Note:
See TracChangeset
for help on using the changeset viewer.