houndsniff

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit c5e216272e38987a5966f7d785738671c75f8502
parent f1df946ac68077c0bae8d22f0720af5acc2e1afd
Author: MichaelDim02 <31562759+MichaelDim02@users.noreply.github.com>
Date:   Sun, 27 Dec 2020 17:19:41 +0000

Delete upp.c

In an effort to reduce the number of files, the code of upp.c has been imported into main.c.
This file is, thus, obsolete.
Diffstat:
Dsrc/upp.c | 23-----------------------
1 file changed, 0 insertions(+), 23 deletions(-)

diff --git a/src/upp.c b/src/upp.c @@ -1,23 +0,0 @@ -#include <stdio.h> -#include <stdbool.h> -#include <string.h> -#include "upp.h" - -bool hasUpper(char ch[600]); - -bool -hasUpper(char ch[600]) -{ - bool hup = false; - - int len = strlen(ch); - int i; - - for (i=0; i<len; i++) { - if (ch[i] >= 'A' && ch[i] <= 'Z') { - hup = true; - break; - } /*else if (ch[i] >= 'a' && ch[i] <= 'z') {*/ - } - return hup; -}