Subversion Repositories Kolibri OS

Rev

Rev 7873 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7873 Rev 7894
Line 8... Line 8...
8
	return ch;
8
	return ch;
9
}
9
}
10
 
10
 
11
void cdecl puts(const char *str)
11
void puts(const char *str)
Line 12... Line 12...
12
{
12
{
13
	con_init_console_dll();
13
	con_init_console_dll();
14
	con_write_asciiz(str);
14
	con_write_asciiz(str);
15
}
15
}
16
 
16
 
Line 17... Line 17...
17
char* cdecl gets(char* str)
17
char* gets(char* str)
18
{
18
{
19
	con_init_console_dll();
19
	con_init_console_dll();
20
	return con_gets(str, 256);
20
	return con_gets(str, 256);
21
}
21
}