Rev 2089 | Rev 2797 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2089 | Rev 2745 | ||
---|---|---|---|
Line 68... | Line 68... | ||
68 | * @param startpos - starting position, changes to found position |
68 | * @param startpos - starting position, changes to found position |
69 | * @return Pointer to the part of string that should be completed or NULL |
69 | * @return Pointer to the part of string that should be completed or NULL |
70 | */ |
70 | */ |
71 | static char * symtab_search_one(const char *name, int *startpos) |
71 | static char * symtab_search_one(const char *name, int *startpos) |
72 | { |
72 | { |
73 | int namelen = strlen(name); |
73 | unsigned int namelen = strlen(name); |
74 | char *curname; |
74 | char *curname; |
75 | int i,j; |
75 | int i,j; |
76 | int colonoffset = -1; |
76 | int colonoffset = -1; |
77 | 77 | ||
78 | for (i=0;name[i];i++) |
78 | for (i=0;name[i];i++) |