Subversion Repositories Kolibri OS

Rev

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

Rev 7760 Rev 7970
Line 25... Line 25...
25
 
25
 
26
void draw_ascii()
26
void draw_ascii()
27
{
27
{
28
	char s[2];
28
	char s[2];
29
	int i, x, y;
29
	int i, x, y;
30
	s[1]=EOS;
30
	s[1] = '\0';
31
	for (i=0; i<256; i++) {
31
	for (i=0; i<256; i++) {
32
		y = i / 20;
32
		y = i / 20;
33
		x = i % 20;
33
		x = i % 20;
34
		s[0] = i;
34
		s[0] = i;