It worked fine until this summer, and I am not sure on what CCS update it happend, but snprintf does not fully work any more. It can do simple formats, but code:
#include <stdio.h> snprintf (buf, 9, "%3d abc", num);
will produce " abc" replacing value of num with spaces.
Thanks in advance.