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