Fix and improve comments.
[sliver-openvswitch.git] / lib / svec.c
index bc3df23..de8d0f8 100644 (file)
@@ -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.
@@ -110,6 +110,16 @@ svec_append(struct svec *svec, const struct svec *other)
     }
 }
 
+void
+svec_move(struct svec *svec, struct svec *other)
+{
+    size_t i;
+    for (i = 0; i < other->n; i++) {
+        svec_add_nocopy(svec, other->names[i]);
+    }
+    other->n = 0;
+}
+
 void
 svec_terminate(struct svec *svec)
 {