File: sstring.h

package info (click to toggle)
hashcash 1.22-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,232 kB
  • sloc: ansic: 8,565; perl: 925; sh: 297; makefile: 181; python: 41
file content (9 lines) | stat: -rw-r--r-- 246 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
/* -*- Mode: C; c-file-style: "stroustrup" -*- */

#define sstrncpy(d,s,l) ((d)[l]='\0',strncpy(d,s,l))

char* sstrtok( const char* str, const char* delim, char** tok, int tok_max, 
	       int* tok_len, char** s );

void stolower( char* str );