diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-11-14 10:07:06 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-11-14 10:07:06 +0000 |
commit | e9953015c778f622a13fba9e080726213b842410 (patch) | |
tree | 75829e98ca3c206a02f366e8b8adc6d8c985c6d9 /apropos_db.h | |
parent | 5ef01561d45c2fa2522c7bb1151fd40ac6e6de19 (diff) | |
download | mandoc-e9953015c778f622a13fba9e080726213b842410.tar.gz |
Have exprcomp() accept a string instead of an array-pointer. Also, collapse
the arguments in apropos(1) into a single string passed to exprcomp(). Ok
schwarze@.
Diffstat (limited to 'apropos_db.h')
-rw-r--r-- | apropos_db.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apropos_db.h b/apropos_db.h index 6cc14d57..cc6e41d9 100644 --- a/apropos_db.h +++ b/apropos_db.h @@ -49,7 +49,7 @@ void apropos_search(const struct opts *, const struct expr *, void *, void (*)(struct rec *, size_t, void *)); -struct expr *exprcomp(int, char *[]); +struct expr *exprcomp(char *); void exprfree(struct expr *); __END_DECLS |