summaryrefslogtreecommitdiff
path: root/lib/dynamic-string.h
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2011-03-11 11:52:12 -0800
committerBen Pfaff <blp@nicira.com>2011-03-16 14:53:16 -0700
commitdd8101bc538cdad7a99f61666760fa79e6c047af (patch)
tree35ce88c2bcbb2c0c4a91a250bc0ec2530b638996 /lib/dynamic-string.h
parent4ffd1b437cef5bb9465465ebf593548e40af76b5 (diff)
downloadopenvswitch-dd8101bc538cdad7a99f61666760fa79e6c047af.tar.gz
dynamic-string: New function ds_get_preprocessed_line().
This commit adds one user. It will be useful elsewhere in an upcoming commit.
Diffstat (limited to 'lib/dynamic-string.h')
-rw-r--r--lib/dynamic-string.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/dynamic-string.h b/lib/dynamic-string.h
index db033c984..2961a0137 100644
--- a/lib/dynamic-string.h
+++ b/lib/dynamic-string.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008, 2009, 2010 Nicira Networks.
+ * Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -54,6 +54,7 @@ void ds_put_strftime(struct ds *, const char *, const struct tm *)
void ds_put_hex_dump(struct ds *ds, const void *buf_, size_t size,
uintptr_t ofs, bool ascii);
int ds_get_line(struct ds *, FILE *);
+int ds_get_preprocessed_line(struct ds *, FILE *);
char *ds_cstr(struct ds *);
const char *ds_cstr_ro(const struct ds *);