diff options
author | Rob Landley <rob@landley.net> | 2017-12-29 17:19:02 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2017-12-29 17:19:02 -0600 |
commit | 736afbadbffcb66fc8b589b35526e7eac5048b68 (patch) | |
tree | 875e26a110a1c617dd0d7a6bd6ff077e75278481 | |
parent | 78c3fcd224c83b454e80a2160ec62e8daf3be5ab (diff) | |
download | toybox-736afbadbffcb66fc8b589b35526e7eac5048b68.tar.gz |
Promote iconv.
-rw-r--r-- | toys/posix/iconv.c (renamed from toys/pending/iconv.c) | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/toys/pending/iconv.c b/toys/posix/iconv.c index 9b3c76b3..a31d713b 100644 --- a/toys/pending/iconv.c +++ b/toys/posix/iconv.c @@ -3,12 +3,14 @@ * Copyright 2014 Felix Janda <felix.janda@posteo.de> * * See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/iconv.html + * + * Deviations from posix: no idea how to implement -l USE_ICONV(NEWTOY(iconv, "cst:f:", TOYFLAG_USR|TOYFLAG_BIN)) config ICONV bool "iconv" - default n + default y depends on TOYBOX_ICONV help usage: iconv [-f FROM] [-t TO] [FILE...] |