diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/c/string/strcspn/gstrcspna.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/c/string/strcspn/gstrcspna.c b/src/c/string/strcspn/gstrcspna.c index 75912e9..4dcdcdf 100644 --- a/src/c/string/strcspn/gstrcspna.c +++ b/src/c/string/strcspn/gstrcspna.c @@ -15,8 +15,7 @@ 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++) |