mirror of
https://github.com/psycopg/psycopg2.git
synced 2025-04-14 05:24:12 +03:00
17 lines
297 B
C
17 lines
297 B
C
/* utils.h - miscellaneous utility functions
|
|
*
|
|
*/
|
|
|
|
#ifndef PSYCOPG_UTILS_H
|
|
#define PSYCOPG_UTILS_H 1
|
|
|
|
#include "psycopg/config.h"
|
|
#include "psycopg/connection.h"
|
|
|
|
|
|
HIDDEN char *psycopg_internal_escape_string(connectionObject *conn, const char *string);
|
|
|
|
#endif /* !defined(PSYCOPG_UTILS_H) */
|
|
|
|
|