File: string.h

package info (click to toggle)
dx 1%3A4.4.0-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 51,684 kB
  • ctags: 48,796
  • sloc: ansic: 365,033; cpp: 156,603; sh: 13,395; java: 10,374; makefile: 2,377; awk: 444; yacc: 327; cs: 49
file content (39 lines) | stat: -rw-r--r-- 1,154 bytes parent folder | download | duplicates (13)
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
28
29
30
31
32
33
34
35
36
37
38
39
/***********************************************************************/
/* Open Visualization Data Explorer                                    */
/* (C) Copyright IBM Corp. 1989,1999                                   */
/* ALL RIGHTS RESERVED                                                 */
/* This code licensed under the                                        */
/*    "IBM PUBLIC LICENSE - Open Visualization Data Explorer"          */
/***********************************************************************/


#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif

#ifndef _DXI_STRING_H_
#define _DXI_STRING_H_

/* TeX starts here.  Do not remove this comment. */

String DXNewString(char *s);
/**
\index{DXNewString}
Creates a new string object and initializes it with a copy of the specified
null-terminated string.  Returns the object or null to indicate an error.
**/

char *DXGetString(String s);
/**
\index{DXGetString}
Returns a pointer to the string value of an object, or null to indicate
an error.
**/

String DXMakeString(char *s);

#endif /* _DXI_STRING_H_ */

#if defined(__cplusplus) || defined(c_plusplus)
}
#endif