00001 00005 #include <nccf_data.h> 00006 00007 int nccf_add_struct_data_att(int dataid, 00008 const char *name, const char *value) { 00009 00010 struct nccf_struct_data_type *self; 00011 self = nccf_li_find(&CFLIST_STRUCTURED_DATA, dataid); 00012 00013 nccf_varSetAttrib(&self->dataVar, name, value); 00014 00015 return NC_NOERR; 00016 00017 }