1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-05-18 12:02:53 +02:00

refactor(solutions): headers file in C

This commit is contained in:
Divlo
2021-10-19 09:37:49 +02:00
parent 953323781c
commit 0893aac35d
10 changed files with 21 additions and 21 deletions

View File

@ -1,5 +1,5 @@
#ifndef CHARACTER_H
#define CHARACTER_H
#ifndef __CHARACTER__
#define __CHARACTER__
/**
* @brief Append a character to a string, assuming string points to an array

View File

@ -1,5 +1,5 @@
#ifndef INPUT_H
#define INPUT_H
#ifndef __INPUT__
#define __INPUT__
/**
* @brief Read a line from stdin.

View File

@ -1,5 +1,5 @@
#ifndef STRING_H
#define STRING_H
#ifndef __STRING__
#define __STRING__
/**
* @brief Removes all whitespace from the start of a string.