mirror of https://github.com/yandex/odyssey.git
36 lines
707 B
C
36 lines
707 B
C
#ifndef SHAPITO_H
|
|
#define SHAPITO_H
|
|
|
|
/*
|
|
* Shapito.
|
|
*
|
|
* Protocol-level PostgreSQL client library.
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <stdarg.h>
|
|
#include <string.h>
|
|
#include <pthread.h>
|
|
#include <assert.h>
|
|
|
|
#include "shapito/macro.h"
|
|
#include "shapito/md5.h"
|
|
#include "shapito/stream.h"
|
|
#include "shapito/cache.h"
|
|
#include "shapito/msg.h"
|
|
#include "shapito/header.h"
|
|
#include "shapito/key.h"
|
|
#include "shapito/password.h"
|
|
#include "shapito/parameter.h"
|
|
#include "shapito/error.h"
|
|
#include "shapito/read.h"
|
|
#include "shapito/fe_write.h"
|
|
#include "shapito/be_write.h"
|
|
#include "shapito/be_read.h"
|
|
#include "shapito/fe_read.h"
|
|
|
|
#endif /* SHAPITO_H */
|