Changeset a33f0a6 in mainline for uspace/lib/c/include/adt/measured_strings.h
- Timestamp:
- 2011-08-03T17:34:57Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1940326
- Parents:
- 52a79081 (diff), 3fab770 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/adt/measured_strings.h
r52a79081 ra33f0a6 41 41 42 42 #include <sys/types.h> 43 #include <async.h> 43 44 44 45 /** Type definition of the character string with measured length. … … 61 62 extern measured_string_t *measured_string_create_bulk(const uint8_t *, size_t); 62 63 extern measured_string_t *measured_string_copy(measured_string_t *); 64 63 65 extern int measured_strings_receive(measured_string_t **, uint8_t **, size_t); 64 66 extern int measured_strings_reply(const measured_string_t *, size_t); 65 extern int measured_strings_return(int, measured_string_t **, uint8_t **, size_t); 66 extern int measured_strings_send(int, const measured_string_t *, size_t); 67 68 extern int measured_strings_return(async_exch_t *, measured_string_t **, 69 uint8_t **, size_t); 70 extern int measured_strings_send(async_exch_t *, const measured_string_t *, 71 size_t); 67 72 68 73 #endif
Note:
See TracChangeset
for help on using the changeset viewer.