DEBSOURCES
Skip Quicknav
sources / frama-c / 20220511-manganese-5 / tests / syntax / vla_strlen.c
12345678
#include "string.h" void f(char* s) { char t[strlen(s) + 1]; char* p = t; while(*s) *p++ = *s++; *p = 0; }