Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Watcom C Library Reference - <u>synopsis:</u> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
Synopsis:
    #include <stdlib.h>
    wchar_t *_atouni( wchar_t *wcs, const char *sbcs );

Description:
    The _atouni function converts the string pointed to by sbcs to a
    wide-character string and places it in the buffer pointed to by wcs.

    The conversion ends at the first null character.

Returns:
    The _atouni function returns the first argument as a result.

Example:
    #include <stdlib.h>

    void main()
      {
        wchar_t wcs[12];

        _atouni( wcs, "Hello world" );
      }

Classification:
    WATCOM

Systems:
    All, Netware

See Also:
    atoi, atol, itoa, ltoa, strtod, strtol, strtoul, ultoa, utoa

See Also:

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson