aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
blob: fd0732c95737d89479cd6b1b5692968e6898ee8d (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h> 

#include "pkgit_string.h" 

int main(int argc, char** argv) {
	str_s slice = slice_trim(slice_from_cstr("  hello world  "));
	printf("[%.*s]\n", format_string(slice));
	return 0;
}