11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
* Alternatively, it may be distributed under the terms of the GNU General
* Public License, either version 2 or 3, which can be found in the file
* LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
* file.
*/
#import "OFString.h"
#if !defined(OF_CONSTANT_STRING_M) && \
defined(OF_APPLE_RUNTIME) && !defined(__OBJC2__)
# ifdef __cplusplus
extern "C" {
# endif
extern void *_OFConstantStringClassReference;
|
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
* Alternatively, it may be distributed under the terms of the GNU General
* Public License, either version 2 or 3, which can be found in the file
* LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
* file.
*/
#import "OFString.h"
OF_ASSUME_NONNULL_BEGIN
#if !defined(OF_CONSTANT_STRING_M) && \
defined(OF_APPLE_RUNTIME) && !defined(__OBJC2__)
# ifdef __cplusplus
extern "C" {
# endif
extern void *_OFConstantStringClassReference;
|
34
35
36
37
38
39
40
|
*/
@interface OFConstantString: OFString
{
char *_cString;
unsigned int _cStringLength;
}
@end
|
>
>
|
36
37
38
39
40
41
42
43
44
|
*/
@interface OFConstantString: OFString
{
char *_cString;
unsigned int _cStringLength;
}
@end
OF_ASSUME_NONNULL_END
|