19 lines
282 B
C
19 lines
282 B
C
#
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "qqwry.h"
|
|
|
|
int main()
|
|
{
|
|
char *qqwry_region = qqwry_("qqwry.dat", "1.1.1.1");
|
|
if (qqwry_region == NULL) {
|
|
printf("qqwry 解析地域错误\n");
|
|
}
|
|
puts(qqwry_region);
|
|
|
|
free(qqwry_region);
|
|
return 0;
|
|
|
|
|
|
}
|