Changeset a32defa in mainline for uspace/srv/devman/util.h
- Timestamp:
- 2010-06-01T20:53:07Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a6e54c5d
- Parents:
- ce89036b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/util.h
rce89036b ra32defa 77 77 } 78 78 79 static inline void replace_char(char *str, char orig, char repl) 80 { 81 while (*str) { 82 if (orig == *str) { 83 *str = repl; 84 } 85 str++; 86 } 87 } 88 79 89 #endif
Note:
See TracChangeset
for help on using the changeset viewer.