Simple Dynamic Strings
홈페이지: https://github.com/antirez/sdsC용 스트링 처리 라이브러리로.. 아래를 지원Concatenating, Formatting, Trimming strings and getting ranges, Fast number to string operations, String copying, Quoting strings, Tokenization, String joining아래는 concat의 예제로 메모리를 자동으로 동적 할당.#include void test(char **s){ *s = sdscat(*s, "foo"); *s = sdscat(*s, "bar"); *s = sdscat(*s, "123");} void main(void){ sds s; s =..