From 849e99602e4b0487dad23e28cb6a94bf013f40a4 Mon Sep 17 00:00:00 2001 From: hunt Date: Thu, 26 May 2005 07:18:22 +0000 Subject: Remove all the generated html files. --- runtime/docs/html/string_8c.html | 52 ---------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 runtime/docs/html/string_8c.html (limited to 'runtime/docs/html/string_8c.html') diff --git a/runtime/docs/html/string_8c.html b/runtime/docs/html/string_8c.html deleted file mode 100644 index 07151c62..00000000 --- a/runtime/docs/html/string_8c.html +++ /dev/null @@ -1,52 +0,0 @@ - - -SystemTap: string.c File Reference - - - -
Main Page | Modules | Directories | File List | Globals | Related Pages
-

string.c File Reference

Implements String type. More... -

-#include <linux/config.h>
- -

-Go to the source code of this file. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Defines

-#define STP_STRING_SIZE   2048
 Maximum string size allowed in Strings.
#define _stp_string_cat(str1, str2)
 ConCATenate (append) a String or C string to a String.

Typedefs

-typedef string * String

Functions

String _stp_string_init (int num)
 Initialize a String for our use.
void _stp_sprintf (String str, const char *fmt,...)
 Sprintf into a String.
void _stp_vsprintf (String str, const char *fmt, va_list args)
 Vsprintf into a String Use this if your function already has a va_list.
void _stp_string_cat_cstr (String str1, const char *str2)
 ConCATenate (append) a C string to a String.
void _stp_string_cat_string (String str1, String str2)
 ConCATenate (append) a String to a String.
char * _stp_string_ptr (String str)
 Get a pointer to String's buffer For rare cases when a C string is needed and you have a String.
-


Detailed Description

-Implements String type. -

- -

-Definition in file string.c. -- cgit