/*
 * reimplementation of Daniel Bernstein's unix library.
 * placed in the public domain by Uwe Ohse, uwe@ohse.de.
 */
#include "str.h"
#include "stralloc.h"

int
stralloc_cats (stralloc * sa, const char *str)
{
	return stralloc_catb (sa, str, str_len (str));
}


syntax highlighted by Code2HTML, v. 0.9.1