fixed warnings when compiled with -Wwrite-strings
[reactos.git] / reactos / boot / freeldr / freeldr / include / rtl.h
1 /*
2 * FreeLoader
3 * Copyright (C) 1998-2003 Brian Palmer <brianp@sginet.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #ifndef __STDLIB_H
21 #define __STDLIB_H
22
23 #include <freeldr.h>
24
25 ///////////////////////////////////////////////////////////////////////////////////////
26 //
27 // Memory Functions
28 //
29 ///////////////////////////////////////////////////////////////////////////////////////
30 int memcmp(const void *buf1, const void *buf2, size_t count);
31 void * memcpy(void *to, const void *from, size_t count);
32 void * memmove(void *dest, const void *src, size_t count);
33 void * memset(void *src, int val, size_t count);
34
35 #define RtlCompareMemory(Source1, Source2, Length) memcmp(Source1, Source2, Length)
36
37 ///////////////////////////////////////////////////////////////////////////////////////
38 //
39 // Standard Library Functions
40 //
41 ///////////////////////////////////////////////////////////////////////////////////////
42 int atoi(const char *string);
43 char * itoa(int value, char *string, int radix);
44 int toupper(int c);
45 int tolower(int c);
46
47 int isspace(int c);
48 int isdigit(int c);
49 int isxdigit(int c);
50
51 char * convert_to_ascii(char *buf, int c, int num);
52 char * convert_i64_to_ascii(char *buf, int c, unsigned long long num);
53
54 void beep(void);
55 void delay(unsigned msec);
56 void sound(int freq);
57
58 #ifndef max
59 #define max(a, b) (((a) > (b)) ? (a) : (b))
60 #endif
61
62 #ifndef min
63 #define min(a, b) (((a) < (b)) ? (a) : (b))
64 #endif
65
66 #define UINT64_C(val) val##ULL
67
68 ///////////////////////////////////////////////////////////////////////////////////////
69 //
70 // Screen Output Functions
71 //
72 ///////////////////////////////////////////////////////////////////////////////////////
73 void print(char *str);
74 int printf(const char *fmt, ...);
75 int sprintf(char *buffer, const char *format, ...);
76
77 ///////////////////////////////////////////////////////////////////////////////////////
78 //
79 // List Functions
80 //
81 ///////////////////////////////////////////////////////////////////////////////////////
82
83 typedef struct _LIST_ITEM
84 {
85 struct _LIST_ITEM* ListPrev;
86 struct _LIST_ITEM* ListNext;
87
88 } LIST_ITEM, *PLIST_ITEM;
89
90 VOID RtlListInitializeHead(PLIST_ITEM ListHead); // Initializes a doubly linked list
91 VOID RtlListInsertHead(PLIST_ITEM ListHead, PLIST_ITEM Entry); // Inserts an entry at the head of the list
92 VOID RtlListInsertTail(PLIST_ITEM ListHead, PLIST_ITEM Entry); // Inserts an entry at the tail of the list
93 PLIST_ITEM RtlListRemoveHead(PLIST_ITEM ListHead); // Removes the entry at the head of the list
94 PLIST_ITEM RtlListRemoveTail(PLIST_ITEM ListHead); // Removes the entry at the tail of the list
95 PLIST_ITEM RtlListGetHead(PLIST_ITEM ListHead); // Returns the entry at the head of the list
96 PLIST_ITEM RtlListGetTail(PLIST_ITEM ListHead); // Returns the entry at the tail of the list
97 BOOL RtlListIsEmpty(PLIST_ITEM ListHead); // Indicates whether a doubly linked list is empty
98 ULONG RtlListCountEntries(PLIST_ITEM ListHead); // Counts the entries in a doubly linked list
99 PLIST_ITEM RtlListGetPrevious(PLIST_ITEM ListEntry); // Returns the previous item in the list
100 PLIST_ITEM RtlListGetNext(PLIST_ITEM ListEntry); // Returns the next item in the list
101 PLIST_ITEM RtlListRemoveEntry(PLIST_ITEM ListEntry); // Removes the entry from the list
102 VOID RtlListInsertEntry(PLIST_ITEM InsertAfter, PLIST_ITEM ListEntry); // Inserts a new list entry right after the specified one
103 VOID RtlListMoveEntryPrevious(PLIST_ITEM ListEntry); // Moves the list entry to before the previous entry
104 VOID RtlListMoveEntryNext(PLIST_ITEM ListEntry); // Moves the list entry to after the next entry
105
106
107 #endif // defined __STDLIB_H