Jacek Caban <[email protected]> writes: > + /* FIXME: Implement in more generic and safe way */ > + for(ptr = name; *ptr && isdigitW(*ptr); ptr++) > + i = i*10 + (*ptr-'0');
What's wrong with strtoulW? -- Alexandre Julliard [email protected]
Jacek Caban <[email protected]> writes: > + /* FIXME: Implement in more generic and safe way */ > + for(ptr = name; *ptr && isdigitW(*ptr); ptr++) > + i = i*10 + (*ptr-'0');
What's wrong with strtoulW? -- Alexandre Julliard [email protected]