summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/string/strcspn/gstrcspna.c
diff options
context:
space:
mode:
authorAbhinav Dronamraju2017-07-17 22:03:40 +0530
committerAbhinav Dronamraju2017-07-17 22:03:40 +0530
commitecbb528a2b7823d0512f3869f4d220e568c10025 (patch)
treeca35baab9f80f50bfdce12ffd00257e3b297df95 /2.3-1/src/c/string/strcspn/gstrcspna.c
parent83869364b668666f317b348aca35a940e010761d (diff)
parent966afe93dbda0568dc376534ac94704ebbfb0329 (diff)
downloadScilab2C-ecbb528a2b7823d0512f3869f4d220e568c10025.tar.gz
Scilab2C-ecbb528a2b7823d0512f3869f4d220e568c10025.tar.bz2
Scilab2C-ecbb528a2b7823d0512f3869f4d220e568c10025.zip
Merged fossee master
Diffstat (limited to '2.3-1/src/c/string/strcspn/gstrcspna.c')
-rw-r--r--2.3-1/src/c/string/strcspn/gstrcspna.c27
1 files changed, 18 insertions, 9 deletions
diff --git a/2.3-1/src/c/string/strcspn/gstrcspna.c b/2.3-1/src/c/string/strcspn/gstrcspna.c
index 2c83c724..91de8af7 100644
--- a/2.3-1/src/c/string/strcspn/gstrcspna.c
+++ b/2.3-1/src/c/string/strcspn/gstrcspna.c
@@ -14,19 +14,28 @@
#include "strcspn.h"
uint8 gstrcspna(char *str1,int size1,char *str2,int size2)
{
- int ind,i,j;
- for(i=0;i<=size2;i++)
+ uint8 ind=size1+1;
+ int l,m;
+ for(m=0;m<size2;m++)
{
- for(j=0;j<=size1;j++)
- {
- if(str2[i]==str1[j])
+ int tp;
+ for(l=0;l<size1;l++)
{
- ind=j;
- break;
+ if(str2[m]==str1[l])
+ {
+ tp=l;
+ if(ind>tp)
+ {
+ ind=tp;
+ }
+ }
}
- }
}
- return (ind+1);
+ if(ind==size1+1)
+ {
+ ind=size1;
+ }
+ return ind;
}