You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

efi_strings.h 587B

1234567891011121314151617181920212223
  1. #ifndef _IPXE_EFI_STRINGS_H
  2. #define _IPXE_EFI_STRINGS_H
  3. /** @file
  4. *
  5. * EFI strings
  6. */
  7. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  8. #include <stddef.h>
  9. #include <stdint.h>
  10. #include <stdarg.h>
  11. extern int efi_vsnprintf ( wchar_t *wbuf, size_t wsize, const char *fmt,
  12. va_list args );
  13. extern int efi_snprintf ( wchar_t *wbuf, size_t wsize, const char *fmt, ... );
  14. extern int efi_vssnprintf ( wchar_t *wbuf, ssize_t swsize, const char *fmt,
  15. va_list args );
  16. extern int efi_ssnprintf ( wchar_t *wbuf, ssize_t swsize,
  17. const char *fmt, ... );
  18. #endif /* _IPXE_EFI_STRINGS_H */