選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ebuffer.h 218B

123456789101112131415
  1. #ifndef _GPXE_EBUFFER_H
  2. #define _GPXE_EBUFFER_H
  3. /**
  4. * @file
  5. *
  6. * Automatically expanding buffers
  7. *
  8. */
  9. struct buffer;
  10. extern int ebuffer_alloc ( struct buffer *buffer, size_t len );
  11. #endif /* _GPXE_EBUFFER_H */