Is there a way to pass unknown quantity of args which can be either char strings or integers into a function and then concatenate them to a char array buffer?
For example, to be able to call all the following functions:
bufcat("this", 1, 3, "that");
// buffer = "this13that"
bufcat(1, "this", "that", 3, 4000000, "other");
// buffer = "1thisthat34000000other"
bufcat(1000000,2,3,4,5,6,7,8,9,10,11,12,13,"onemillionandfiftytwo");
// buffer = "10000002345678910111213onemillionandfiftytwo"
A simple solution is possible in c++11 using variadic templates. If performance matters the boilerplate code needed for the classic printf idiom might be more acceptable than the memory allocations used here.