1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Clean up comment in libpgeasy.

This commit is contained in:
Bruce Momjian
2001-12-14 00:40:31 +00:00
parent 3aaaf5aeee
commit bdafb40077

View File

@ -39,9 +39,9 @@ static int was_get_unset_result = FALSE;
static int tuple; static int tuple;
/* /*
** *
** connectdb - returns PGconn structure * connectdb - returns PGconn structure
** *
*/ */
PGconn * PGconn *
connectdb(char *options) connectdb(char *options)
@ -55,9 +55,9 @@ connectdb(char *options)
} }
/* /*
** *
** disconnectdb * disconnectdb
** *
*/ */
void void
disconnectdb() disconnectdb()
@ -71,9 +71,9 @@ disconnectdb()
} }
/* /*
** *
** doquery - returns PGresult structure * doquery - returns PGresult structure
** *
*/ */
PGresult * PGresult *
doquery(char *query) doquery(char *query)
@ -104,10 +104,10 @@ doquery(char *query)
} }
/* /*
** *
** fetch - returns tuple number (starts at 0), or the value END_OF_TUPLES * fetch - returns tuple number (starts at 0), or the value END_OF_TUPLES
** NULL pointers are skipped * NULL pointers are skipped
** *
*/ */
int int
fetch(void *param,...) fetch(void *param,...)
@ -141,11 +141,11 @@ fetch(void *param,...)
} }
/* /*
** *
** fetchwithnulls - returns tuple number (starts at 0), * fetchwithnulls - returns tuple number (starts at 0),
** or the value END_OF_TUPLES * or the value END_OF_TUPLES
** Returns TRUE or FALSE into null indicator variables * Returns TRUE or FALSE into null indicator variables
** NULL pointers are skipped * NULL pointers are skipped
*/ */
int int
fetchwithnulls(void *param,...) fetchwithnulls(void *param,...)
@ -184,9 +184,9 @@ fetchwithnulls(void *param,...)
} }
/* /*
** *
** on_error_stop * on_error_stop
** *
*/ */
void void
on_error_stop() on_error_stop()
@ -195,9 +195,9 @@ on_error_stop()
} }
/* /*
** *
** on_error_continue * on_error_continue
** *
*/ */
void void
on_error_continue() on_error_continue()
@ -207,9 +207,9 @@ on_error_continue()
/* /*
** *
** get_result * get_result
** *
*/ */
PGresult * PGresult *
get_result() get_result()
@ -227,9 +227,9 @@ get_result()
} }
/* /*
** *
** set_result * set_result
** *
*/ */
void void
set_result(PGresult *newres) set_result(PGresult *newres)
@ -263,9 +263,9 @@ set_result(PGresult *newres)
/* /*
** *
** unset_result * unset_result
** *
*/ */
void void
unset_result(PGresult *oldres) unset_result(PGresult *oldres)
@ -287,9 +287,9 @@ unset_result(PGresult *oldres)
} }
/* /*
** *
** reset_fetch * reset_fetch
** *
*/ */
void void
reset_fetch() reset_fetch()