/ msDBFReadIntAttribute() */ / Read an integer attribute. */ /
| 599 | /* Read an integer attribute. */ |
| 600 | /************************************************************************/ |
| 601 | int msDBFReadIntegerAttribute( DBFHandle psDBF, int iRecord, int iField ) |
| 602 | |
| 603 | { |
| 604 | return(atoi(msDBFReadAttribute( psDBF, iRecord, iField ))); |
| 605 | } |
| 606 | |
| 607 | /************************************************************************/ |
| 608 | /* msDBFReadDoubleAttribute() */ |
no test coverage detected