*** pgsql/src/include/libpq/pqformat.h 2004/12/31 22:03:32 1.23 --- pgsql/src/include/libpq/pqformat.h 2009/03/02 21:19:05 1.23.6.1 *************** *** 6,12 **** * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * ! * $PostgreSQL: pgsql/src/include/libpq/pqformat.h,v 1.22 2004/08/29 04:13:07 momjian Exp $ * *------------------------------------------------------------------------- */ --- 6,12 ---- * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * ! * $PostgreSQL: pgsql/src/include/libpq/pqformat.h,v 1.23 2004/12/31 22:03:32 pgsql Exp $ * *------------------------------------------------------------------------- */ *************** extern void pq_sendcountedtext(StringInf *** 22,27 **** --- 22,28 ---- bool countincludesself); extern void pq_sendtext(StringInfo buf, const char *str, int slen); extern void pq_sendstring(StringInfo buf, const char *str); + extern void pq_send_ascii_string(StringInfo buf, const char *str); extern void pq_sendint(StringInfo buf, int i, int b); extern void pq_sendint64(StringInfo buf, int64 i); extern void pq_sendfloat4(StringInfo buf, float4 f);