Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 5685 → Rev 5690

/programs/cmm/lib/encoding.h
File deleted
\ No newline at end of file
/programs/cmm/lib/dll.h
19,7 → 19,7
:inline void error_init(dword text)
{
dword TEXT_ERROR = malloc(1024);
sprintf("%s `%s`' -E",_TEXT_ERROR_ADD,text);
sprintf(TEXT_ERROR, "%s `%s`' -E",_TEXT_ERROR_ADD,text);
notify(TEXT_ERROR);
free(TEXT_ERROR);
}
/programs/cmm/lib/obj/iconv.h
57,8 → 57,8
}
 
 
char *charsets[] = { " ", "UTF-8", "KOI8-RU", "CP1251", "CP1252", "ISO8859-5", "CP866"};
int cur_charset;
:char *charsets[] = { " ", "UTF-8", "KOI8-RU", "CP1251", "CP1252", "ISO8859-5", "CP866"};
:int cur_charset;
enum {
CH_NULL,
CH_UTF8,
/programs/cmm/lib/strings.h
21,7 → 21,7
// itoa(signed long number) --- convert the number as a string
// atoi(dword text) --- convert a string as a number
// strupr( ESI)
// strlwr( ESI) --- kyrillic symbols may not work
// strlwr( ESI) --- Cyrillic symbols may not work
// strttl( EDX)
// strtok( ESI)
// strltrim(dword text) --- removes "blank" characters on the left (\r, \n and space)