?login_element?

Subversion Repositories NedoOS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /*-------------------------------------------------------------------------
  2.   stdio.h - ANSI functions forward declarations
  3.  
  4.              Written By -  Sandeep Dutta . sandeep.dutta@usa.net (1998)
  5.  
  6.    This program is free software; you can redistribute it and/or modify it
  7.    under the terms of the GNU General Public License as published by the
  8.    Free Software Foundation; either version 2, or (at your option) any
  9.    later version.
  10.  
  11.    This program is distributed in the hope that it will be useful,
  12.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.    GNU General Public License for more details.
  15.  
  16.    You should have received a copy of the GNU General Public License
  17.    along with this program; if not, write to the Free Software
  18.    Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19.  
  20.    In other words, you are welcome to use, share and improve this program.
  21.    You are forbidden to forbid anyone else to use, share and improve
  22.    what you give them.   Help stamp out software-hoarding!
  23. -------------------------------------------------------------------------*/
  24.  
  25. #ifndef __SDC51_STDIO_H
  26. #define __SDC51_STDIO_H 1
  27.  
  28. #include <stdarg.h>
  29.  
  30. #ifdef __ds390
  31. #include <tinibios.h>
  32. #endif
  33.  
  34. #include <sdcc-lib.h>
  35.  
  36. #ifndef NULL
  37.   #define NULL (void *)0
  38. #endif
  39.  
  40. #ifndef _SIZE_T_DEFINED
  41. #define _SIZE_T_DEFINED
  42.   typedef unsigned int size_t;
  43. #endif
  44.  
  45. typedef void (*pfn_outputchar)(char c, void* p) _REENTRANT;
  46.  
  47. extern int _print_format (pfn_outputchar pfn, void* pvoid, const char *format, va_list ap);
  48.  
  49. /*-----------------------------------------------------------------------*/
  50.  
  51. extern void printf_small (char *,...) _REENTRANT;
  52. extern int printf (const char *,...);
  53. extern int vprintf (const char *, va_list);
  54. extern int sprintf (char *, const char *, ...);
  55. extern int vsprintf (char *, const char *, va_list);
  56. extern int puts(const char *);
  57. extern char *gets(char *);
  58. extern char getchar(void);
  59. extern void putchar(char);
  60.  
  61. #if defined(SDCC_mcs51) && !defined(SDCC_USE_XSTACK)
  62. extern void printf_fast(__code char *fmt, ...) _REENTRANT;
  63. extern void printf_fast_f(__code char *fmt, ...) _REENTRANT;
  64. extern void printf_tiny(__code char *fmt, ...) _REENTRANT;
  65. #endif
  66.  
  67. #endif /* __SDC51_STDIO_H */
  68.