summaryrefslogtreecommitdiff
path: root/ch2/2-05.c
diff options
context:
space:
mode:
authorAdam Carpenter <gitlab@53hor.net>2019-07-23 13:03:59 -0400
committerAdam Carpenter <gitlab@53hor.net>2019-07-23 13:03:59 -0400
commitcbfba32803a16ebe6b33f8ccdedf602cc49addc7 (patch)
tree2787b016e1b4cb2c56c6fb57257126b2b3d594bd /ch2/2-05.c
parentfa996dc786d26afc508d637c565ec401f6b5ddb9 (diff)
downloadlearning-c-cbfba32803a16ebe6b33f8ccdedf602cc49addc7.tar.xz
learning-c-cbfba32803a16ebe6b33f8ccdedf602cc49addc7.zip
Removed unecessary string terminator checks.
Diffstat (limited to 'ch2/2-05.c')
-rw-r--r--ch2/2-05.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ch2/2-05.c b/ch2/2-05.c
index 495473c..282786e 100644
--- a/ch2/2-05.c
+++ b/ch2/2-05.c
@@ -4,8 +4,8 @@ int any(char s1[], char s2[]) {
int i;
int j;
- for (i = 0; s2[i] != '\0'; ++i)
- for (j = 0; s1[j] != '\0'; ++j)
+ for (i = 0; s2[i]; ++i)
+ for (j = 0; s1[j]; ++j)
if (s2[i] == s1[j])
return j;