/* %Z%%M% %I% %E% */

/*
 * Copyright (c) 1990, 1991, 1994, 1995 by Wayne C. Gramlich.
 * All rights reserved.
 *
 * Permission to use, copy, modify, distribute, and sell this software
 * for any purpose is hereby granted without fee provided that the above
 * copyright notice and this permission are retained.  The author makes
 * no representations about the suitability of this software for any purpose.
 * It is provided "as is" without express or implied warranty.
 */

/* Exported dynamic length string routine interfaces: */

#ifndef STRVEC_EXPORTS_H
#define STRVEC_EXPORTS_H

#ifndef STR_TYPES_H
#include "str_types.h"
#endif

#ifndef STRVEC_TYPES_H
#include "strvec_types.h"
#endif

#ifndef UNIX_STDARG_H
#include "unix_stdarg.h"
#endif

extern void	strvec_chr_append(Strvec, char);
extern void	strvec_close(Strvec, Heap);
extern Strvec	strvec_create(Heap);
extern void	strvec_destroy(Strvec);
extern void	strvec_erase(Strvec);
extern void	strvec_flush(Str, int, Strvec, Heap);
extern void	strvec_print(Strvec, Str, ...);
extern void	strvec_print_varargs(Strvec, Str, va_list);
extern int	strvec_size(Strvec);
extern void	strvec_str_append(Strvec, Str);
extern Str	strvec_str_get(Strvec, Heap);

#endif /* STRVEC_EXPORTS_H */


