1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/challenges/print-pyramid/solutions/c/function/character.c

18 lines
403 B
C
Raw Normal View History

#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, int number_of_times) {
for (size_t iteration = 0; iteration < number_of_times; iteration++) {
printf("%s", character);
}
}