File: str.h

package info (click to toggle)
tinyssh 20250501-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,388 kB
  • sloc: ansic: 20,245; sh: 1,582; python: 1,449; makefile: 913
file content (9 lines) | stat: -rw-r--r-- 252 bytes parent folder | download
1
2
3
4
5
6
7
8
9
#ifndef STR_H____
#define STR_H____

extern long long str_len(const char *);
extern int str_start(const char *, const char *);
extern int str_equaln(const char *, long long, const char *);
extern int str_copyn(char *, long long, const char *);

#endif