shithub: scc

ref: d4565f079cfff9680439f8b0c2b82d7a01167498
dir: /tests/libc/execute/0018-strlen.c/

View raw version
#include <assert.h>
#include <stdio.h>
#include <string.h>

/*
output:
testing
done
end:
*/

int
main()
{
	puts("testing");

	assert(strlen("01234") == 5);
	assert(strlen("") == 0);

	puts("done");

	return 0;
}