File: test_c.c

package info (click to toggle)
spatialindex 2.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,312 kB
  • sloc: cpp: 51,468; python: 3,886; ansic: 848; sh: 375; makefile: 155
file content (8 lines) | stat: -rw-r--r-- 183 bytes parent folder | download
1
2
3
4
5
6
7
8
#include <stdio.h>
#include <spatialindex/capi/sidx_api.h>

int main(int argc, char *argv[]) {
    char* pszVersion = SIDX_Version();
    printf("%s\n", pszVersion);
    return(0);
}