aboutsummaryrefslogtreecommitdiff
path: root/include/system.h
blob: 62600131bad46f4f0dbcab2f1472cc224eb49fe9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __SYSTEM_H__
#define __SYSTEM_H__

#include "types.h"


err e33_ioctl( Size fd, unsigned long req, void *arg );
boolean strcomp( String s1, String s2 );
void clear_tty( void);
void vprint_tty( String fmt, ... );
err get_line (char *buff, size_t sz, char *fmt, ...);


#endif /** __SYSTEM_H__ **/