Advertisement
Guest User

Untitled

a guest
Dec 18th, 2012
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. typedef struct AVBPrint_temp {
  2. char *str; /** string so far */
  3. unsigned len; /** length so far */
  4. unsigned size; /** allocated memory */
  5. unsigned size_max; /** maximum allocated memory */
  6. char reserved_internal_buffer[1];
  7. };
  8.  
  9. typedef struct AVBPrint {
  10. char *str; /** string so far */
  11. unsigned len; /** length so far */
  12. unsigned size; /** allocated memory */
  13. unsigned size_max; /** maximum allocated memory */
  14. char reserved_internal_buffer[1];
  15. char reserved_padding[1024 - sizeof(AVBPrint_temp)];
  16. } AVBPrint;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement