about summary refs log tree commit diff stats
path: root/vector.h
diff options
context:
space:
mode:
authorLars Hjemli2011-02-19 14:00:56 +0100
committerLars Hjemli2011-02-19 14:00:59 +0100
commite66a16cebcdac53b63e77876acef1ca9e4877038 (patch)
tree839123e66853c4a80c305a3a1c13295fe5e6acc9 /vector.h
parentUse GIT-1.7.4 (diff)
parenthtml.c: use '+' to escape spaces in urls (diff)
downloadcgit-e66a16cebcdac53b63e77876acef1ca9e4877038.tar.gz
cgit-e66a16cebcdac53b63e77876acef1ca9e4877038.zip
Merge branch 'lh/improve-range-search'
* lh/improve-range-search:
  html.c: use '+' to escape spaces in urls
  ui-log.c: improve handling of range-search argument
  Add vector utility functions
Diffstat (limited to 'vector.h')
-rw-r--r--vector.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/vector.h b/vector.h new file mode 100644 index 0000000..c64eb1f --- /dev/null +++ b/vector.h
@@ -0,0 +1,17 @@
1#ifndef CGIT_VECTOR_H
2#define CGIT_VECTOR_H
3
4#include <stdlib.h>
5
6struct vector {
7 size_t size;
8 size_t count;
9 size_t alloc;
10 void *data;
11};
12
13#define VECTOR_INIT(type) {sizeof(type), 0, 0, NULL}
14
15int vector_push(struct vector *vec, const void *data, int gently);
16
17#endif /* CGIT_VECTOR_H */