postgresql-libpq-0.9.1.1: cbits/noticehandlers.h
#include <string.h>
typedef struct PGnotice{
struct PGnotice * next;
size_t len;
char str[];
} PGnotice;
typedef struct {
PGnotice * first;
PGnotice * last;
} NoticeBuffer;
#include <string.h>
typedef struct PGnotice{
struct PGnotice * next;
size_t len;
char str[];
} PGnotice;
typedef struct {
PGnotice * first;
PGnotice * last;
} NoticeBuffer;