aboutsummaryrefslogtreecommitdiff
path: root/strings.h
blob: db3c3e1782f21382ee7bb6d4a94269036cc37280 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef STRINGS_H
#define STRINGS_H

#include "db.h"


uint16_t len(const char *s);

bool sameStr(const char *s1, const char *s2);

ssize_t strInTags(const char *tags, int n, const char *ndl, int m, char sep); 


#endif