diff options
author | Samuel Mendoza-Jonas <sam.mj@au1.ibm.com> | 2014-10-09 14:40:38 +1100 |
---|---|---|
committer | Samuel Mendoza-Jonas <sam.mj@au1.ibm.com> | 2015-08-31 14:56:51 +1000 |
commit | 75c3e8689b1affde2dc8417ca96ca94bc132408f (patch) | |
tree | 42b52c2fc6b019b301cadd0e733a4836819ef1ee /lib/i18n/i18n.h | |
parent | 3ec4b6e0f2a1a91b7a651eff9762f247a724d3d2 (diff) | |
download | talos-petitboot-75c3e8689b1affde2dc8417ca96ca94bc132408f.tar.gz talos-petitboot-75c3e8689b1affde2dc8417ca96ca94bc132408f.zip |
lib/i18n: Move strncols to i18n.c
Make the strncols() helper available generally to i18n-concerned code.
Signed-off-by: Samuel Mendoza-Jonas <sam.mj@au1.ibm.com>
Diffstat (limited to 'lib/i18n/i18n.h')
-rw-r--r-- | lib/i18n/i18n.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/i18n/i18n.h b/lib/i18n/i18n.h index d7ff154..dde02f1 100644 --- a/lib/i18n/i18n.h +++ b/lib/i18n/i18n.h @@ -22,5 +22,7 @@ #define _(x) gettext(x) +int strncols(const char *str); + #endif /* I18N_H */ |