12 lines
234 B
C
12 lines
234 B
C
#ifndef STRING_UTILS_H
|
|
#define STRING_UTILS_H
|
|
|
|
#include <efi.h>
|
|
|
|
BOOLEAN is_space16(CHAR16 Ch);
|
|
CHAR16 ascii_lower16(CHAR16 Ch);
|
|
BOOLEAN ascii_streq_ci(const CHAR16 *A, const CHAR16 *B);
|
|
void trim_spaces_inplace(CHAR16 *Cmd);
|
|
|
|
#endif
|