Changeset 46577995 in mainline for uspace/dist/src/c/demos/edit/search.h
- Timestamp:
- 2018-01-04T20:50:52Z (8 years ago)
- Children:
- e211ea04
- Parents:
- facacc71
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:47:53)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:50:52)
- File:
-
- 1 edited
-
uspace/dist/src/c/demos/edit/search.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/dist/src/c/demos/edit/search.h
rfacacc71 r46577995 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.
