This repository has been archived on 2026-05-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
piquant/tests/string_strlen.c

10 lines
170 B
C
Raw Permalink Normal View History

2016-03-27 13:16:41 -07:00
#include "string.h"
int main(void)
{
if ( strlen("Test") != 4 ) return 1;
if ( strlen("Th\0ing") != 2 ) return 2;
if ( strlen(NULL) != 0 ) return 3;
return 0;
}