mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-11-09 22:08:58 +01:00
18 lines
406 B
C
18 lines
406 B
C
#include "character.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
void character_append(char* string, char character) {
|
|
size_t length = strlen(string);
|
|
string[length] = character;
|
|
string[length + 1] = '\0';
|
|
}
|
|
|
|
void character_print(char* character, size_t number_of_times) {
|
|
for (size_t iteration = 0; iteration < number_of_times; iteration++) {
|
|
printf("%s", character);
|
|
}
|
|
}
|