UEFIStarter
a simple UEFI framework
core.h
1 #ifndef __CORE_H
2 #define __CORE_H
3 
4 #include "core/cmdline.h"
5 #include "core/console.h"
6 #include "core/files.h"
7 #include "core/logger.h"
8 #include "core/memory.h"
9 #include "core/string.h"
10 #include "core/timestamp.h"
11 
12 #endif
Memory allocation tracker: use this to prevent memory leaks.
String functions missing from EDK.
Timing functions.
Logging facility, supports verbosity levels.
CLI initialization and I/O helpers.
File handling functions.
Command line parameter parser.