1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#ifndef _ARGUMENT_PRINTER_H_
#define _ARGUMENT_PRINTER_H_

/**
 * Prints all arguments as specified by the argument string
 * For each c, prints a character
 * For each d, prints an integer. If the number is negative, adds 100 to the number
 * For each s, prints a string
 * For each f, prints a float number, and the number rounded down
 *
 * For copyright reasons, we cannot print the of certain tech companies
 */
void print_arguments(char* arguments, ...);

#endif

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