Changeset 738 for trunk/zoo-project/zoo-kernel/service.c
- Timestamp:
- Jul 13, 2015, 3:42:39 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/zoo-project/zoo-kernel/service.c
r712 r738 455 455 * @param v the corresponding value to add 456 456 * @param size the size of the given value 457 */ 458 void addToMapWithSize(map* m,const char* n,const char* v,int size){ 457 * @return a pointer to the updated map m 458 */ 459 map* addToMapWithSize(map* m,const char* n,const char* v,int size){ 459 460 if(hasKey(m,n)==false){ 460 461 map* _cursor=m; … … 477 478 sprintf(sin,"%d",size); 478 479 addToMap(m,sname,sin); 480 return m; 479 481 } 480 482
Note: See TracChangeset
for help on using the changeset viewer.