Reduce size of section headers.

This commit is contained in:
hummypkg 2017-03-10 09:00:34 +00:00 committed by GitHub
parent 090dbbc865
commit 88aa63c2ed
1 changed files with 4 additions and 4 deletions

View File

@ -1,17 +1,17 @@
# libxconv # libxconv
Lightweight ISO-6937 to UTF-8 conversion library. Lightweight ISO-6937 to UTF-8 conversion library.
### SYNOPSIS ##### SYNOPSIS
> size\_t xconv(char \*inbuf, char \*outbuf, size\_t outbuflen); > size\_t xconv(char \*inbuf, char \*outbuf, size\_t outbuflen);
### DESCRIPTION ##### DESCRIPTION
> The xconv() function converts a sequence of characters in ISO-6937 > The xconv() function converts a sequence of characters in ISO-6937
> encoding to UTF-8. > encoding to UTF-8.
> >
> If a UTF-8 sequence is found within the input string, processing is aborted. > If a UTF-8 sequence is found within the input string, processing is aborted.
### RETURN VALUE ##### RETURN VALUE
> On successful conversion, the xconv() function returns the number of > On successful conversion, the xconv() function returns the number of
> characters placed into _outbuf_ excluding the string terminator. > characters placed into _outbuf_ excluding the string terminator.
@ -20,7 +20,7 @@ Lightweight ISO-6937 to UTF-8 conversion library.
> was found) then the function returns 0. In this case, the state of the > was found) then the function returns 0. In this case, the state of the
> output buffer is undefined and it should not be used. > output buffer is undefined and it should not be used.
### NOTES ##### NOTES
> This library was written to replace iconv() for a specific conversion task > This library was written to replace iconv() for a specific conversion task
> in a small embedded environment with little memory or CPU time available. > in a small embedded environment with little memory or CPU time available.