Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
You are correct; this prompts a warning:
format specifies type 'int' but the argument has type 'size_t'
.Since count is of type size_t, I think the format specifier should be %zu instead of %d.
Yeah, is this kind of way to hide part of the solution in some preloaded sections in order for it to look shorter and therefore more clever? I saw similar solutions and couldn't get the point. It shall be prohibited.
Are these "split" and "joinStrings" functions from Criterion framework? Atually I can't find any mention of such a c function neither in standard c library nor on Criterion documentation.