#include <stdio.h>
#include <stdlib.h>
#include "src/csb.h"

int main(void) {
	csb_buf *buf = csb_new_withstring("This is a test string.");
	if (buf) {
		csb_destroy(buf);
		return(0);
	}
	return(1);
}


syntax highlighted by Code2HTML, v. 0.9.1