Changeset f2d2c604 in mainline for uspace/lib/c/include/adt/measured_strings.h
- Timestamp:
- 2010-10-27T21:51:14Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 069015f2
- Parents:
- e7f6389 (diff), 0a3fbc7 (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
re7f6389 rf2d2c604 43 43 44 44 /** Type definition of the character string with measured length. 45 * 45 * @see measured_string 46 46 */ 47 47 typedef struct measured_string measured_string_t; 48 48 49 49 /** Type definition of the character string with measured length pointer. 50 * 50 * @see measured_string 51 51 */ 52 52 typedef measured_string_t *measured_string_ref; … … 59 59 struct measured_string { 60 60 /** Character string data. */ 61 char * 61 char *value; 62 62 /** Character string length. */ 63 63 size_t length;
Note:
See TracChangeset
for help on using the changeset viewer.