Differences From Artifact [c1b245bad8]:
- File src/OFString.m — part of check-in [dbe286c39f] at 2015-05-14 09:10:55 on branch trunk — initWithContentsOfURL: Require files or sockets (user: js, size: 56237) [annotate] [blame] [check-ins using]
To Artifact [b888341646]:
- File
src/OFString.m
— part of check-in
[cec0f072f8]
at
2016-01-03 00:43:58
on branch 0.8
— Update copyright
While at it, also update the mail address. (user: js, size: 56231) [annotate] [blame] [check-ins using]
1 | 1 2 3 4 5 6 7 8 9 10 | - - + + | /* |
| ︙ | |||
2135 2136 2137 2138 2139 2140 2141 | 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 | - + - |
@".", @"..", @"/");
}
- (intmax_t)decimalValue
{
void *pool = objc_autoreleasePoolPush();
const of_unichar_t *characters = [self characters];
|
| ︙ | |||
2190 2191 2192 2193 2194 2195 2196 | 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 | - + - |
return value;
}
- (uintmax_t)hexadecimalValue
{
void *pool = objc_autoreleasePoolPush();
const of_unichar_t *characters = [self characters];
|
| ︙ |