add initial configuration and update author information in header files
This commit is contained in:
parent
5beea32eee
commit
0178845516
20 changed files with 850 additions and 823 deletions
|
|
@ -1,25 +1,25 @@
|
|||
/*----------------------------------------------------------
|
||||
* HTBLA-Leonding
|
||||
* ---------------------------------------------------------
|
||||
* Title: Reverse String
|
||||
* Author: */ your name /*
|
||||
* ----------------------------------------------------------
|
||||
* Description:
|
||||
* Recursive and iterative implementation of an algorithm that
|
||||
* reverses a given string.
|
||||
* ----------------------------------------------------------
|
||||
*/
|
||||
|
||||
/* *************************************************************
|
||||
* see corresponding c-file for instructions
|
||||
***************************************************************/
|
||||
|
||||
#ifndef ___REVERSE_STRING_H
|
||||
#define ___REVERSE_STRING_H
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
void reverse_string_recursive(char* str, int start, int end);
|
||||
void reverse_string_iterative(char* str, int start, int end);
|
||||
|
||||
/*----------------------------------------------------------
|
||||
* HTBLA-Leonding
|
||||
* ---------------------------------------------------------
|
||||
* Title: Reverse String
|
||||
* Author: Marc Tismonar
|
||||
* ----------------------------------------------------------
|
||||
* Description:
|
||||
* Recursive and iterative implementation of an algorithm that
|
||||
* reverses a given string.
|
||||
* ----------------------------------------------------------
|
||||
*/
|
||||
|
||||
/* *************************************************************
|
||||
* see corresponding c-file for instructions
|
||||
***************************************************************/
|
||||
|
||||
#ifndef ___REVERSE_STRING_H
|
||||
#define ___REVERSE_STRING_H
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
void reverse_string_recursive(char* str, int start, int end);
|
||||
void reverse_string_iterative(char* str, int start, int end);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue