ASR_BASE

Change-Id: Icf3719cc0afe3eeb3edc7fa80a2eb5199ca9dda1
diff --git a/marvell/services/mgui/String.h b/marvell/services/mgui/String.h
new file mode 100644
index 0000000..a93f8cc
--- /dev/null
+++ b/marvell/services/mgui/String.h
@@ -0,0 +1,39 @@
+/******************************************************************************

+*(C) Copyright 2014 Marvell International Ltd.

+* All Rights Reserved

+******************************************************************************/

+/*******************************************************************************

+ *

+ *  Filename: String.h

+ *

+ *  Authors:  Boaz Sommer

+ *

+ *  Description: A String class - holds a string

+ *

+ *  HISTORY:

+ *

+ *

+ *

+ *  Notes:

+ *

+ ******************************************************************************/

+#ifndef __STRING_H__

+#define	__STRING_H__

+

+

+typedef	void *	STRING;

+

+#ifdef  __cplusplus

+    extern  "C" {

+#endif

+STRING	*StringInit		(STRING *pt);

+void	StringDeinit	(STRING *pt);

+void	StringSet		(STRING *pt, const char *s);

+char	*StringGet		(STRING *pt);

+

+#ifdef  __cplusplus

+	}

+#endif

+

+#endif	//__STRING_H__

+