objc
include
runtime-gcc
objc
NXConstantString+Protocol.h
Go to the documentation of this file.
1
14
#pragma once
15
17
// PROTOCOL DEFINITIONS
18
33
@protocol
NXConstantStringProtocol
34
35
@required
36
43
- (const
char
*)
cStr
;
44
50
- (
unsigned
int)
length
;
51
52
@end
-[NXConstantStringProtocol-p length]
unsigned int length()
Returns the length of the string in bytes.
-[NXConstantStringProtocol-p cStr]
const char * cStr()
Returns the C string representation of the string.
NXConstantStringProtocol-p
Protocol for constant string objects.
Definition:
NXConstantString+Protocol.h:33