X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fdynamic-string.h;h=a8a27ad8307da2e3ce0ad7468346bc7b548d0f2c;hb=541bc79f73add327072470c9bc3febb4195cdb3c;hp=35a035730baa636e46645cc7440679d05f04225d;hpb=b5d29991cc4722aec39c346c3f82291581e92aa0;p=openvswitch diff --git a/lib/dynamic-string.h b/lib/dynamic-string.h index 35a03573..a8a27ad8 100644 --- a/lib/dynamic-string.h +++ b/lib/dynamic-string.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks. + * Copyright (c) 2008, 2009, 2010, 2011, 2012 Nicira Networks. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -26,6 +26,13 @@ struct tm; +/* A "dynamic string", that is, a buffer that can be used to construct a + * string across a series of operations that extend or modify it. + * + * The 'string' member does not always point to a null-terminated string. + * Initially it is NULL, and even when it is nonnull, some operations do not + * ensure that it is null-terminated. Use ds_cstr() to ensure that memory is + * allocated for the string and that it is null-terminated. */ struct ds { char *string; /* Null-terminated string. */ size_t length; /* Bytes used, not including null terminator. */