mirror of https://github.com/yandex/odyssey.git
31 lines
593 B
C
31 lines
593 B
C
#ifndef SHAPITO_H
|
|
#define SHAPITO_H
|
|
|
|
/*
|
|
* SHAPITO.
|
|
*
|
|
* Protocol-level PostgreSQL client library.
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
|
|
#include "sources/macro.h"
|
|
#include "sources/md5.h"
|
|
#include "sources/stream.h"
|
|
#include "sources/header.h"
|
|
#include "sources/key.h"
|
|
#include "sources/password.h"
|
|
#include "sources/parameter.h"
|
|
#include "sources/error.h"
|
|
#include "sources/read.h"
|
|
#include "sources/fe_write.h"
|
|
#include "sources/be_write.h"
|
|
#include "sources/be_read.h"
|
|
#include "sources/fe_read.h"
|
|
|
|
#endif /* SHAPITO_H */
|