pupdns/src/main.c

12 lines
175 B
C
Raw Normal View History

2025-05-13 13:18:22 -07:00
#include <stdio.h>
#include "packet_buffer.h"
2025-05-13 11:01:13 -07:00
int main()
{
2025-05-13 13:18:22 -07:00
struct PacketBuffer *buf = new_packet_buffer();
printf("size: %ld\n", sizeof(buf->buf));
2025-05-13 11:01:13 -07:00
return 0;
}