comparison src/os_mac_conv.c @ 20:4ac1dce8dd5e v7.0012

updated for version 7.0012
author vimboss
date Mon, 26 Jul 2004 12:53:41 +0000
parents 293621502c4d
children 4d9eabb1396e
comparison
equal deleted inserted replaced
19:a81bc802c17c 20:4ac1dce8dd5e
14 */ 14 */
15 15
16 #define NO_X11_INCLUDES 16 #define NO_X11_INCLUDES
17 #include "vim.h" 17 #include "vim.h"
18 18
19 #ifdef FEAT_MBYTE
19 extern char_u *mac_string_convert __ARGS((char_u *ptr, int len, int *lenp, int fail_on_error, int from, int to, int *unconvlenp)); 20 extern char_u *mac_string_convert __ARGS((char_u *ptr, int len, int *lenp, int fail_on_error, int from, int to, int *unconvlenp));
20 extern int macroman2enc __ARGS((char_u *ptr, long *sizep, long real_size)); 21 extern int macroman2enc __ARGS((char_u *ptr, long *sizep, long real_size));
21 extern int enc2macroman __ARGS((char_u *from, size_t fromlen, char_u *to, int *tolenp, int maxtolen, char_u *rest, int *restlenp)); 22 extern int enc2macroman __ARGS((char_u *from, size_t fromlen, char_u *to, int *tolenp, int maxtolen, char_u *rest, int *restlenp));
22 23
23 /* 24 /*
226 } 227 }
227 CFRelease(cfstr); 228 CFRelease(cfstr);
228 *tolenp = l; 229 *tolenp = l;
229 return OK; 230 return OK;
230 } 231 }
232
233 #endif /* FEAT_MBYTE */