21 lines
405 B
C
21 lines
405 B
C
|
/* 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);
|
||
|
}
|