diff options
Diffstat (limited to 'src/c/string/strcspn/gstrcspna.c')
-rw-r--r-- | src/c/string/strcspn/gstrcspna.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/c/string/strcspn/gstrcspna.c b/src/c/string/strcspn/gstrcspna.c index 5617e17..75912e9 100644 --- a/src/c/string/strcspn/gstrcspna.c +++ b/src/c/string/strcspn/gstrcspna.c @@ -16,6 +16,8 @@ uint8 gstrcspna(char *str1,int size1,char *str2,int size2) { int ind,i,j;; for(i=0;i<=size1;i++) + int j; + for(i=0;i<=size1;i++) { for(j=0;j<=size2;j++) { |