238 ucx_properties_free(parser); |
238 ucx_properties_free(parser); |
239 return error; |
239 return error; |
240 } |
240 } |
241 |
241 |
242 int ucx_properties_store(CxMap *map, FILE *file) { |
242 int ucx_properties_store(CxMap *map, FILE *file) { |
243 CxIterator iter = cxMapIterator(map); |
243 CxMapIterator iter = cxMapIterator(map); |
244 cxstring value; |
244 cxstring value; |
245 size_t written; |
245 size_t written; |
246 |
246 |
247 cx_foreach(CxMapEntry *, v, iter) { |
247 cx_foreach(CxMapEntry *, v, iter) { |
248 value = cx_str(v->value); |
248 value = cx_str(v->value); |