Back to home page

Quest Cross Reference

 
 

    


Warning, cross-references for /kernel/include/util/screen.h need to be fixed.

0001 /*                    The Quest Operating System
0002  *  Copyright (C) 2005-2010  Richard West, Boston University
0003  *
0004  *  This program is free software: you can redistribute it and/or modify
0005  *  it under the terms of the GNU General Public License as published by
0006  *  the Free Software Foundation, either version 3 of the License, or
0007  *  (at your option) any later version.
0008  *
0009  *  This program is distributed in the hope that it will be useful,
0010  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
0011  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0012  *  GNU General Public License for more details.
0013  *
0014  *  You should have received a copy of the GNU General Public License
0015  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
0016  */
0017 
0018 #ifndef _SCREEN_H_
0019 #define _SCREEN_H_
0020 
0021 extern char *pchVideo;
0022 extern int putchar (int ch);
0023 extern int print (char *pch);
0024 extern void putx (uint32 l);
0025 /* unlocked: */
0026 extern int _putchar (int ch);
0027 extern int _print (char *pch);
0028 extern void _putx (uint32 l);
0029 
0030 #endif
0031 
0032 /* 
0033  * Local Variables:
0034  * indent-tabs-mode: nil
0035  * mode: C
0036  * c-file-style: "gnu"
0037  * c-basic-offset: 2
0038  * End: 
0039  */
0040 
0041 /* vi: set et sw=2 sts=2: */