1
0
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-12-11 00:21:24 +01:00

feat(solutions): add acronyms/c/function

This commit is contained in:
Divlo
2021-09-29 22:34:22 +02:00
parent 0c078abb89
commit 7d140cb8a9
8 changed files with 168 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#include "character.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';
}
const char character_to_upper(const char character) {
char ascii_a = 'a';
char ascii_A = 'A';
char ascii_z = 'z';
if (character >= ascii_a && character <= ascii_z) {
return character + (ascii_A - ascii_a);
}
return character;
}