diff options
author | 2000-11-21 00:48:49 +0000 | |
---|---|---|
committer | 2000-11-21 00:48:49 +0000 | |
commit | f56b2b2b918ffd76583d919f8012266491e0d994 (patch) | |
tree | 7c43662b33003bad4a28750036a5cef63a90b8ab | |
parent | Add readpasasphrase(3), a more flexible getpass(3) replacement. (diff) | |
download | wireguard-openbsd-f56b2b2b918ffd76583d919f8012266491e0d994.tar.xz wireguard-openbsd-f56b2b2b918ffd76583d919f8012266491e0d994.zip |
Missed this in the strnvis(3) commit.
-rw-r--r-- | include/vis.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/vis.h b/include/vis.h index 55441d87562..3bc7f178ee5 100644 --- a/include/vis.h +++ b/include/vis.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vis.h,v 1.3 1999/05/14 20:31:56 aaron Exp $ */ +/* $OpenBSD: vis.h,v 1.4 2000/11/21 00:48:49 millert Exp $ */ /* $NetBSD: vis.h,v 1.4 1994/10/26 00:56:41 cgd Exp $ */ /*- @@ -79,6 +79,7 @@ __BEGIN_DECLS char *vis __P((char *, int, int, int)); int strvis __P((char *, const char *, int)); +int strnvis __P((char *, const char *, size_t, int)); int strvisx __P((char *, const char *, size_t, int)); int strunvis __P((char *, const char *)); int unvis __P((char *, char, int *, int)); |