diff options
| author | christos <christos@NetBSD.org> | 2016-04-11 00:50:13 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2016-04-11 00:50:13 +0000 |
| commit | 074960bb097ee8f2b57d7f3e9588ddd18a031c05 (patch) | |
| tree | 3229482b7e2624f94116037ef25056c7a1e4eb36 /lib/libedit/parse.h | |
| parent | 914fbc62fa09a6335ae580c073d3cd6ca42f2209 (diff) | |
Char -> wchar_t from Ingo Schwarze.
Diffstat (limited to 'lib/libedit/parse.h')
| -rw-r--r-- | lib/libedit/parse.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libedit/parse.h b/lib/libedit/parse.h index ec04051bc27..5f61c4a17d7 100644 --- a/lib/libedit/parse.h +++ b/lib/libedit/parse.h @@ -1,4 +1,4 @@ -/* $NetBSD: parse.h,v 1.7 2009/12/30 22:37:40 christos Exp $ */ +/* $NetBSD: parse.h,v 1.8 2016/04/11 00:50:13 christos Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -40,9 +40,9 @@ #ifndef _h_el_parse #define _h_el_parse -protected int parse_line(EditLine *, const Char *); -protected int parse__escape(const Char **); -protected Char *parse__string(Char *, const Char *); -protected int parse_cmd(EditLine *, const Char *); +protected int parse_line(EditLine *, const wchar_t *); +protected int parse__escape(const wchar_t **); +protected wchar_t *parse__string(wchar_t *, const wchar_t *); +protected int parse_cmd(EditLine *, const wchar_t *); #endif /* _h_el_parse */ |
