From cef9f7ad1bdc417b82fff594b0b01fc7078a272e Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Sat, 24 Sep 2022 12:36:56 -0400 Subject: Can detect if a char is in a string --- findChar.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 findChar.h diff --git a/findChar.h b/findChar.h new file mode 100644 index 0000000..3d46e93 --- /dev/null +++ b/findChar.h @@ -0,0 +1,25 @@ +/* findChar.h + * ---------------------------------------------------------------------------- + * "THE BEER-WARE LICENSE" (Revision 42): + * wrote this file. As long as you retain this notice + * you can do whatever you want with this stuff. If we meet some day, and you + * think this stuff is worth it, you can buy me a beer in return. + * Benjamin Chausse + * ---------------------------------------------------------------------------- + */ + + +// This returns TRUE +int findChar(char *s,char target){ + char *str = lower(trim(s)); + int match = 0; + str = lower(str); + // Add if finding the index is necessary: + // str = trim(str); + for (int i=0;i0) ? TRUE : FALSE; +} -- cgit v1.2.3