comparison src/video/bwindow/SDL_BWin.h @ 1336:3692456e7b0f

Use SDL_ prefixed versions of C library functions. FIXME: Change #include <stdlib.h> to #include "SDL_stdlib.h" Change #include <string.h> to #include "SDL_string.h" Make sure nothing else broke because of this...
author Sam Lantinga <slouken@libsdl.org>
date Tue, 07 Feb 2006 06:59:48 +0000
parents c9b51268668f
children 19418e4422cb
comparison
equal deleted inserted replaced
1335:c39265384763 1336:3692456e7b0f
329 unsigned char destbuf[2]; 329 unsigned char destbuf[2];
330 Uint16 unicode = 0; 330 Uint16 unicode = 0;
331 331
332 if ((uchar)buf[0] > 127) { 332 if ((uchar)buf[0] > 127) {
333 state = 0; 333 state = 0;
334 srclen = strlen(buf); 334 srclen = SDL_strlen(buf);
335 dstlen = sizeof(destbuf); 335 dstlen = sizeof(destbuf);
336 convert_from_utf8(B_UNICODE_CONVERSION, buf, &srclen, (char *)destbuf, &dstlen, &state); 336 convert_from_utf8(B_UNICODE_CONVERSION, buf, &srclen, (char *)destbuf, &dstlen, &state);
337 unicode = destbuf[0]; 337 unicode = destbuf[0];
338 unicode <<= 8; 338 unicode <<= 8;
339 unicode |= destbuf[1]; 339 unicode |= destbuf[1];