File: strarray.h

package info (click to toggle)
python-pygit2 1.18.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,720 kB
  • sloc: ansic: 12,584; python: 9,337; sh: 205; makefile: 26
file content (6 lines) | stat: -rw-r--r-- 127 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
typedef struct git_strarray {
	char **strings;
	size_t count;
} git_strarray;

void git_strarray_dispose(git_strarray *array);