source: bootcd/isolinux/syslinux-6.03/com32/include/bufprintf.h

Last change on this file was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 226 bytes
Line 
1#define BUFPAD  4096
2
3struct print_buf {
4    char *buf;
5    size_t len;
6    size_t size;
7};
8
9int vbufprintf(struct print_buf *buf, const char *format, va_list ap);
10int bufprintf(struct print_buf *buf, const char *format, ...);
Note: See TracBrowser for help on using the repository browser.