File: stringutils.h

package info (click to toggle)
vbox3 0.1.7.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 660 kB
  • ctags: 273
  • sloc: ansic: 3,454; sh: 1,831; makefile: 119; tcl: 22
file content (22 lines) | stat: -rw-r--r-- 681 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
** $Id: stringutils.h,v 1.6 2001/01/14 13:50:21 pape Exp $
**
** Copyright 1996-1998 Michael 'Ghandi' Herold <michael@abadonna.mayn.de>
*/

#ifndef _VBOX_STRINGUTILS_H
#define _VBOX_STRINGUTILS_H 1

/** Defines **************************************************************/

#define printstring	sprintf

/** Prototypes ***********************************************************/

extern unsigned char *xstrtoupper(unsigned char *);
extern void xstrncpy(unsigned char *, unsigned char *, int);
extern void xstrncat(unsigned char *, unsigned char *, int);
extern long xstrtol(unsigned char *, long);
extern long xstrtoo(unsigned char *, long);

#endif /* _VBOX_STRINGUTILS_H */