Changeset b7fd2a0 in mainline for uspace/dist/src/c/demos/edit/search.h
- Timestamp:
- 2018-01-13T03:10:29Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a53ed3a
- Parents:
- 36f0738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/dist/src/c/demos/edit/search.h
r36f0738 rb7fd2a0 42 42 typedef struct search search_t; 43 43 typedef bool (*search_equals_fn)(const wchar_t, const wchar_t); 44 typedef int (*search_producer_fn)(void *, wchar_t *);45 typedef int (*search_mark_fn)(void *, void **);44 typedef errno_t (*search_producer_fn)(void *, wchar_t *); 45 typedef errno_t (*search_mark_fn)(void *, void **); 46 46 typedef void (*search_mark_free_fn)(void *); 47 47 … … 60 60 extern bool char_exact_equals(const wchar_t, const wchar_t); 61 61 extern search_t *search_init(const char *, void *, search_ops_t, bool); 62 extern int search_next_match(search_t *, match_t *);62 extern errno_t search_next_match(search_t *, match_t *); 63 63 extern void search_fini(search_t *); 64 64
Note:
See TracChangeset
for help on using the changeset viewer.