Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 1144 → Rev 1145

/programs/develop/libraries/console/examples/test_gets.asm
41,7 → 41,7
; for (;;)
; {
; con_write_asciiz("Enter string (empty for exit): ");
; con_gets(s,256);
; if (!con_gets(s,256)) break;
; if (s[0] == '\n') break;
; con_write_asciiz("You entered: ");
; con_write_asciiz(s);
52,6 → 52,8
push 256
push s
call [con_gets]
test eax, eax
jz done
cmp [s], 10
jz done
push str2