mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-15 16:18:22 +01:00
git-svn-id: svn://136.177.114.72/svn_GW/IPhreeqc/trunk@4109 1feff8c3-07ed-0310-ac33-dd36852eb9cd
16 lines
214 B
C
16 lines
214 B
C
#include <stdio.h>
|
|
|
|
#include <IPhreeqc.h>
|
|
|
|
int main(void)
|
|
{
|
|
int i;
|
|
int r;
|
|
for (i=0; i < 100; ++i) {
|
|
printf("i=%d\n", i);
|
|
r = LoadDatabase("phreeqc.dat");
|
|
/*UnLoadDatabase();*/
|
|
}
|
|
return 0;
|
|
}
|