File: mystring.h

package info (click to toggle)
hybserv 1.9.2-4
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 2,848 kB
  • ctags: 1,854
  • sloc: ansic: 37,037; sh: 3,167; makefile: 337
file content (27 lines) | stat: -rw-r--r-- 515 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * mystring.h
 * Hybserv2 Services by Hybserv2 team
 *
 * $Id: mystring.h 1233 2005-09-15 20:30:13Z kreator $
 */

#ifndef INCLUDED_mystring_h
#define INCLUDED_mystring_h

#include "stdinc.h"
#include "config.h"

char *StrToupper(char *);
char *StrTolower(char *);
char *GetString(int, char **);
int SplitBuf(char *, char ***);

#ifndef HAVE_STRLCPY
size_t strlcpy(char *, const char *, size_t);
#endif

#ifndef HAVE_STRLCAT
size_t strlcat(char *, const char *, size_t);
#endif

#endif /* INCLUDED_mystring_h */