I see this line in C:
#define log(format, args...) snprintf(buffer + strlen(buffer), 1023 - strlen(buffer), format, ##args);
What does the
That's the "token-pasting" preprocessor operator, and I don't think that macro uses it correctly.