libcdsb/tests/src/string/trim.c

21 lines
405 B
C
Raw Normal View History

2022-06-04 00:30:23 +03:00
/* This software is licensed by the MIT License, see LICENSE file */
/* Copyright © 2022 Gregory Lirent */
#include "plug.h"
int main(int argc, char** argv) {
test_init(argc, argv);
vtype_string x;
x = string_random(12);
string_align_center(&x, 30, 0);
string_print(&x, 0);
string_trim(&x, 0);
string_print(&x, 0);
string_free(&x);
}