sprinkle some attributes

This commit is contained in:
leitner
2024-11-26 16:23:20 +00:00
parent 79c86ae7eb
commit a4a0d74dda
11 changed files with 60 additions and 15 deletions

View File

@@ -3,7 +3,7 @@
#include "ldif.h"
/* behave like strcmp */
int matchstring(struct string* s,const char* c) {
int matchstring(const struct string* s,const char* c) {
unsigned int l,l1,i;
if (!c) return -1;
l1=l=bstrlen(c);