Due to server problems the website is temporarily offline! Visit http://www.smorgasbordet.com/pellesc/ to download Pelles C.
#define __STDC_WANT_LIB_EXT1__ 1#include <stdio.h>#include <string.h>unsigned len_func(const char * ss, unsigned size) { return (unsigned)strnlen_s(ss,size);}int main(int argc, char *argv[]) { (void)argv[argc]; printf("strnlen_s = %llu\n", strnlen_s("qwe",6)); printf("len_func = %u\n", len_func("qwe",6)); return 0;}
strnlen_s = 3len_func = 12