home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August (Alt) / CHIP 2005-08.1.iso / program / guvenlik / syslinux-3.07.exe / com32 / samples / hello.c < prev    next >
Encoding:
C/C++ Source or Header  |  2004-12-14  |  1.0 KB  |  42 lines

  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. }
  42.