syslinux-3.08-2 sources from FC4
[bootcd.git] / syslinux / com32 / samples / hello.c
1 #ident "$Id: hello.c,v 1.2 2004/12/14 22:46:25 hpa Exp $"
2 /* ----------------------------------------------------------------------- *
3  *   
4  *   Copyright 2004 H. Peter Anvin - All Rights Reserved
5  *
6  *   This program is free software; you can redistribute it and/or modify
7  *   it under the terms of the GNU General Public License as published by
8  *   the Free Software Foundation, Inc., 53 Temple Place Ste 330,
9  *   Boston MA 02111-1307, USA; either version 2 of the License, or
10  *   (at your option) any later version; incorporated herein by reference.
11  *
12  * ----------------------------------------------------------------------- */
13
14 /*
15  * hello.c
16  *
17  * Hello, World! using libcom32
18  */
19
20 #include <string.h>
21 #include <stdio.h>
22 #include <console.h>
23
24 int main(void)
25 {
26   char buffer[1024];
27
28   openconsole(&dev_stdcon_r, &dev_stdcon_w);
29
30   printf("Hello, World!\n");
31
32   for (;;) {
33     printf("> ");
34     fgets(buffer, sizeof buffer, stdin);
35     if ( !strncmp(buffer, "exit", 4) )
36       break;
37     printf(": %s", buffer);
38   }
39     
40   return 0;
41 }