Changeset 4022513 in mainline
- Timestamp:
- 2011-07-24T12:53:44Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 45cae6b
- Parents:
- 8fd04ba9
- Location:
- uspace/srv/devman
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/devman.c
r8fd04ba9 r4022513 422 422 } 423 423 424 insert_fun_node(tree, fun, clone_string(""), NULL);424 insert_fun_node(tree, fun, str_dup(""), NULL); 425 425 match_id_t *id = create_match_id(); 426 id->id = clone_string("root");426 id->id = str_dup("root"); 427 427 id->score = 100; 428 428 add_match_id(&fun->match_ids, id); -
uspace/srv/devman/util.c
r8fd04ba9 r4022513 91 91 } 92 92 93 char *clone_string(const char *s)94 {95 size_t size = str_size(s) + 1;96 char *str;97 98 str = (char *) malloc(size);99 if (str != NULL)100 str_cpy(str, size, s);101 return str;102 }103 104 93 void replace_char(char *str, char orig, char repl) 105 94 { -
uspace/srv/devman/util.h
r8fd04ba9 r4022513 44 44 extern size_t get_nonspace_len(const char *); 45 45 extern void free_not_null(const void *); 46 extern char *clone_string(const char *);47 46 extern void replace_char(char *, char, char); 48 47
Note:
See TracChangeset
for help on using the changeset viewer.