1
2
3
4
5
6
7
8
9
#ifndef __mintf_h__  // include guard
#define __mintf_h__  // include guard

#include "print_integer.h"

void mintf(const char *format, ...);
void print_integer(int n, int radix, char* prefix);

#endif  // include guard

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