blob: 38a113130c021511d5ccb5da205e433862ae2073 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* Copyright (c) 2001, Stanford University
* All rights reserved.
*
* See the file LICENSE.txt for information on redistributing this software.
*/
#ifndef CR_URL_H
#define CR_URL_H
#include <iprt/cdefs.h>
#ifdef __cplusplus
extern "C" {
#endif
DECLEXPORT(int) crParseURL( const char *url, char *protocol, char *hostname,
unsigned short *port, unsigned short default_port );
#ifdef __cplusplus
}
#endif
#endif /* CR_URL_H */
|