Ignore:
Timestamp:
Oct 29, 2002, 1:16:15 PM (23 years ago)
Author:
sandervl
Message:

header updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/wine/unicode.h

    r8938 r9367  
    270270}
    271271
     272static inline long int atolW( const WCHAR *str )
     273{
     274    return strtolW( str, (WCHAR **)0, 10 );
     275}
     276
     277static inline int atoiW( const WCHAR *str )
     278{
     279    return (int)atolW( str );
     280}
    272281
    273282#if defined(__IBMC__) || defined(__IBMCPP__) || defined(__WATCOMC__) || defined(__WATCOM_CPLUSPLUS__)
Note: See TracChangeset for help on using the changeset viewer.