mirror of https://github.com/yandex/odyssey.git
25 lines
374 B
C
25 lines
374 B
C
#ifndef SOPRANO_H_
|
|
#define SOPRANO_H_
|
|
|
|
/*
|
|
* soprano.
|
|
*
|
|
* Protocol-level PostgreSQL client library.
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
|
|
#include <so_macro.h>
|
|
#include <so_stream.h>
|
|
#include <so_header.h>
|
|
#include <so_read.h>
|
|
#include <so_fewrite.h>
|
|
#include <so_bewrite.h>
|
|
#include <so_beread.h>
|
|
|
|
#endif
|