1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
#ifndef __PRINT_INTEGER_H__
#define __PRINT_INTEGER_H__

//-------------
// HEADER FILE - function declarations, symbolic constants, etc.
//-------------


// Function DECLARATION for print_integer(…) -- just the function signature (name, return type, parameters)

void print_integer(int n, int radix, char* prefix);

#define PRINT_INTEGER_H_VERSION 2
#endif /* end of include guard: __PRINT_INTEGER_H__ */

// This (↓↓↓) is a Vim "mode line".  It sets the settings just for this file, so when you edit
// this file, you will have the same tab size and other settings.
//
// vim: set tabstop=4 fileencoding=utf-8 noexpandtab:

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