/ msDBFWriteStringAttribute() */ / Write a string attribute. */ /
| 805 | /* Write a string attribute. */ |
| 806 | /************************************************************************/ |
| 807 | int msDBFWriteStringAttribute( DBFHandle psDBF, int iRecord, int iField, const char * pszValue ) |
| 808 | { |
| 809 | return( msDBFWriteAttribute( psDBF, iRecord, iField, (void *) pszValue ) ); |
| 810 | } |
| 811 | |
| 812 | /* |
| 813 | ** Which column number in the .DBF file does the item correspond to |
no test coverage detected