Add qemu 2.4.0
[kvmfornfv.git] / qemu / roms / ipxe / src / include / ipxe / efi / efi_strings.h
1 #ifndef _IPXE_EFI_STRINGS_H
2 #define _IPXE_EFI_STRINGS_H
3
4 /** @file
5  *
6  * EFI strings
7  */
8
9 FILE_LICENCE ( GPL2_OR_LATER );
10
11 #include <stddef.h>
12 #include <stdint.h>
13 #include <stdarg.h>
14
15 extern int efi_vsnprintf ( wchar_t *wbuf, size_t wsize, const char *fmt,
16                            va_list args );
17 extern int efi_snprintf ( wchar_t *wbuf, size_t wsize, const char *fmt, ... );
18 extern int efi_vssnprintf ( wchar_t *wbuf, ssize_t swsize, const char *fmt,
19                             va_list args );
20 extern int efi_ssnprintf ( wchar_t *wbuf, ssize_t swsize,
21                            const char *fmt, ... );
22
23 #endif /* _IPXE_EFI_STRINGS_H */