Initial checkin of toy OS project.
[os.git] / kernel / inc / rtl.h
1 //+----------------------------------------------------------------------------
2 //
3 // File:     rtl.h
4 //
5 // Module:   
6 //
7 // Synopsis: 
8 //
9 // Copyright (C) 2003 Scott Gasch
10 //
11 // Created:  sgasch  5 Jul 2003
12 //
13 //+----------------------------------------------------------------------------
14
15 #ifndef _RTL_H_
16 #define _RTL_H_
17
18 void 
19 RtlSetMemory(void *pStart, 
20              BYTE bFill,
21              ULONG uLength);
22
23 CHAR *
24 RtlIntToAscii(INT i,
25               CHAR *buf,
26               ULONG uBufLen,
27               ULONG uBase);
28
29 #endif /* _RTL_H_ */
30
31
32
33