1
2
3
4
5
6
7
8
9
#include <stdio.h>
#include "mintf.h"

void mintf(char* format, ...) {
    if(format[0] != '\0') {
        fputc(format[0], stdout);
    }
}
// You *MAY* use or adapt this snippet in your code.

© Copyright 2017 Alexander J. Quinn         This content is protected and may not be shared, uploaded, or distributed.