#include "cifparse.h"
int ndb_cif_get_item_value(const int colId,
char fieldValue[maxFieldLen],
const int maxFieldLen);
ndb_cif_get_item_value copys the item value in the current row and column identified by colId into the buffer fieldValue, which must be of the fixed length maxFieldLen.
| colId | identifies the column |
| fieldValue | a fixed length buffer to hold the item value |
| maxFieldLen | the length of the buffer fieldValue |
Returns 1 upon success and 0 upon failure, with success leading to the item value being stored in the second argument.
| None |