| 793 | /************************************************************************/ |
| 794 | |
| 795 | int msDBFWriteIntegerAttribute( DBFHandle psDBF, int iRecord, int iField, int nValue ) |
| 796 | { |
| 797 | double dValue = nValue; |
| 798 | |
| 799 | return( msDBFWriteAttribute( psDBF, iRecord, iField, (void *) &dValue ) ); |
| 800 | } |
| 801 | |
| 802 | /************************************************************************/ |
| 803 | /* msDBFWriteStringAttribute() */ |
no test coverage detected