PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ DBFReadIntegerAttribute()

int SHPAPI_CALL DBFReadIntegerAttribute ( DBFHandle  psDBF,
int  iRecord,
int  iField 
)

Definition at line 1018 of file dbfopen.c.

1019{
1020 double *pdValue;
1021
1022 pdValue = (double *)DBFReadAttribute(psDBF, iRecord, iField, 'N');
1023
1024 if (pdValue == NULL)
1025 return 0;
1026 else
1027 return ((int)*pdValue);
1028}
static void * DBFReadAttribute(DBFHandle psDBF, int hEntity, int iField, char chReqType)
Definition dbfopen.c:934

References DBFReadAttribute().

Here is the call graph for this function: