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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * $id$
 *
 * © Copyright IBM Corp. 2007
 *
 * THIS FILE IS PROVIDED UNDER THE TERMS OF THE ECLIPSE PUBLIC LICENSE
 * ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS FILE
 * CONSTITUTES RECIPIENTS ACCEPTANCE OF THE AGREEMENT.
 *
 * You can obtain a current copy of the Eclipse Public License from
 * http://www.opensource.org/licenses/eclipse-1.0.php
 *
 * Author:        Sven Schuetz
 *
 * Description:
 *
 * Objectpath utility functions
 *
*/

#ifndef _OBJECTPATH_H
#define _OBJECTPATH_H

#include "utilft.h"

UtilStringBuffer *normalizeObjectPathStrBuf(const CMPIObjectPath * cop);
char *normalizeObjectPathChars(const CMPIObjectPath *cop);
char *normalizeObjectPathCharsDup(const CMPIObjectPath *cop);
int objectpathCompare(const CMPIObjectPath *cop1, const CMPIObjectPath *cop2);

#endif