X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=lib%2Fdynamic-string.h;h=eebbdbfe872b36c9e0603ae77bcfcaa204bf7b5c;hb=a0bc29a541fc7dc6e20137d5558e2094d614e6ab;hp=a44e0b30ff9320e8d81f73d355ee6643e2f73871;hpb=4871855420190bc83fda294d7e815bd4e9c8531a;p=openvswitch diff --git a/lib/dynamic-string.h b/lib/dynamic-string.h index a44e0b30..eebbdbfe 100644 --- a/lib/dynamic-string.h +++ b/lib/dynamic-string.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009 Nicira Networks. + * Copyright (c) 2008, 2009, 2010 Nicira Networks. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -40,9 +40,11 @@ void ds_truncate(struct ds *, size_t new_length); void ds_reserve(struct ds *, size_t min_length); char *ds_put_uninit(struct ds *, size_t n); void ds_put_char(struct ds *, char); +void ds_put_utf8(struct ds *, int uc); void ds_put_char_multiple(struct ds *, char, size_t n); void ds_put_buffer(struct ds *, const char *, size_t n); void ds_put_cstr(struct ds *, const char *); +void ds_put_and_free_cstr(struct ds *, char *); void ds_put_format(struct ds *, const char *, ...) PRINTF_FORMAT(2, 3); void ds_put_format_valist(struct ds *, const char *, va_list) PRINTF_FORMAT(2, 0); @@ -54,8 +56,10 @@ void ds_put_hex_dump(struct ds *ds, const void *buf_, size_t size, int ds_get_line(struct ds *, FILE *); char *ds_cstr(struct ds *); +const char *ds_cstr_ro(const struct ds *); char *ds_steal_cstr(struct ds *); void ds_destroy(struct ds *); +void ds_swap(struct ds *, struct ds *); int ds_last(const struct ds *); void ds_chomp(struct ds *, int c);