1
2
3
4
5
6
7
8
#include "p.h"  // Gives us our Number type.

#include "q.h"  // This, in effect, includes p.h a second time because it is included in q.h.
                // That could lead to compiler errors due to defining the type multiple times.

void print_integer(Number n, Number radix, char* prefix) {
    // ...
}

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