/** Rule: MSC33-C
* Source: wiki
* Status: PASS - Should NOT trigger MSC33-C violation
*/#include<time.h>enum{ maxsize =26};voidfunc(struct tm *time){char s[maxsize];/* Current time representation for locale */constchar*format ="%c";size_t size =strftime(s, maxsize, format, time);}