This commit is contained in:
hyung-hwan 2008-06-04 02:14:05 +00:00
parent dc9036c6ba
commit 6d21988397

View File

@ -41,3 +41,14 @@ int ase_tgp_geterrnum (ase_tgp_t* tgp)
int ase_tgp_read (ase_tgp_t* tgp) int ase_tgp_read (ase_tgp_t* tgp)
{ {
} }
main ()
{
tgp = ase_tgp_open (ASE_NULL);
ase_tgp_read (tgp, reader);
ase_tgp_exec (tgp, reader);
ase_tgp_close (tgp);
}