aboutsummaryrefslogtreecommitdiffstats
path: root/db/strvec.h
blob: 2ffea192659e97a0acd0c460fe9d1740ddced152 (plain)
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
 * All Rights Reserved.
 */

extern void	add_strvec(char ***vecp, char *str);
extern char	**copy_strvec(char **vec);
extern void	free_strvec(char **vec);
extern char	**new_strvec(int count);
extern void	print_strvec(char **vec);