blob: a93f8cc6ecb8aa4468e1f152e621f4c2f95ce792 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001/******************************************************************************
2*(C) Copyright 2014 Marvell International Ltd.
3* All Rights Reserved
4******************************************************************************/
5/*******************************************************************************
6 *
7 * Filename: String.h
8 *
9 * Authors: Boaz Sommer
10 *
11 * Description: A String class - holds a string
12 *
13 * HISTORY:
14 *
15 *
16 *
17 * Notes:
18 *
19 ******************************************************************************/
20#ifndef __STRING_H__
21#define __STRING_H__
22
23
24typedef void * STRING;
25
26#ifdef __cplusplus
27 extern "C" {
28#endif
29STRING *StringInit (STRING *pt);
30void StringDeinit (STRING *pt);
31void StringSet (STRING *pt, const char *s);
32char *StringGet (STRING *pt);
33
34#ifdef __cplusplus
35 }
36#endif
37
38#endif //__STRING_H__
39