Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Zortech C++ Language Reference - disp_puts http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
   disp_puts

   Usage
   #include <disp.h>
   int disp_puts(const char *s);

   Description
   disp_puts  writes the string s to the current display package output
   location using  the  character  attribute set by  disp_setattr (without
   the terminating 0),  then writes a newline to stdout. . Handles
   tabs, carriage returns and backspaces, etc. correctly.

   Example
   #include <disp.h>
   main()
   {
   char *string = "Display this string using disp_puts,";
   char *string2 = "Disp_puts inserts a newline character.";

        disp_puts(string);
        disp_puts(string2);
   }

   Return Value
   Returns a positive value if successful, otherwise EOF.


See Also:

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson