~ubuntu-branches/ubuntu/trusty/sblim-sfcb/trusty-proposed

1 by Thierry Carrez
Import upstream version 1.3.0
1
/*
2
 * $id$
3
 *
4
 * © Copyright IBM Corp. 2007
5
 *
6
 * THIS FILE IS PROVIDED UNDER THE TERMS OF THE ECLIPSE PUBLIC LICENSE
7
 * ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS FILE
8
 * CONSTITUTES RECIPIENTS ACCEPTANCE OF THE AGREEMENT.
9
 *
10
 * You can obtain a current copy of the Eclipse Public License from
11
 * http://www.opensource.org/licenses/eclipse-1.0.php
12
 *
13
 * Author:        Sven Schuetz
14
 *
15
 * Description:
16
 *
17
 * Objectpath utility functions
18
 *
19
*/
20
21
#ifndef _OBJECTPATH_H
22
#define _OBJECTPATH_H
23
24
#include "utilft.h"
25
26
UtilStringBuffer *normalizeObjectPathStrBuf(const CMPIObjectPath * cop);
27
char *normalizeObjectPathChars(const CMPIObjectPath *cop);
28
char *normalizeObjectPathCharsDup(const CMPIObjectPath *cop);
29
int objectpathCompare(const CMPIObjectPath *cop1, const CMPIObjectPath *cop2);
30
31
#endif