Files
programming-challenges/challenges/reverse-polish-notation/solutions/c/function/character.h
T

14 lines
253 B
C

#ifndef __CHARACTER__
#define __CHARACTER__
/**
* @brief Append a character to a string, assuming string points to an array
* with enough space.
*
* @param string
* @param character
*/
void character_append(char* string, char character);
#endif