123456789101112131415161718192021222324252627282930313233343536373839 |
- #ifndef _NODES_H_
- #define _NODES_H_
- /*
- * Copyright (c) 2011-2012 Nokia Corporation and/or its subsidiary(-ies).
- * All rights reserved.
- * This component and the accompanying materials are made available
- * under the terms of the License "Eclipse Public License v1.0"
- * which accompanies this distribution, and is available
- * at the URL "http://www.eclipse.org/legal/epl-v10.html".
- *
- * Initial Contributors:
- * Nokia Corporation - initial contribution.
- *
- * Contributors:
- *
- * Description:
- *
- * node types for use in various data structures or linked-list or tree type
- *
- */
- struct Node1Struct {
- char *key;
- char *value;
- struct Node1Struct *next;
- };
- typedef struct Node1Struct Node1;
- struct Node2Struct {
- char *key;
- char *value;
- struct Node2Struct *prev;
- struct Node2Struct *next;
- };
- #endif
|