| 959 | } |
| 960 | |
| 961 | int printf(const char *fmt, ...) // limited to MAXSTRLEN |
| 962 | { |
| 963 | int len = 0; |
| 964 | if(data) |
| 965 | { |
| 966 | defvformatstring(temp, fmt, fmt); |
| 967 | len = strlen(temp); |
| 968 | if(len) data->put((uchar *)temp, len); |
| 969 | } |
| 970 | return len; |
| 971 | } |
| 972 | }; |
| 973 | |
| 974 | struct memstream : stream |
no test coverage detected