Content deleted Content added
m →strchr problem: wording |
m →strchr problem: wording part 2. Technically, an implementation could look exactly like this. |
||
Line 305:
char*: strchr_m, \
const char*: strchr_c \
)(X,Y)</syntaxhighlight
<syntaxhighlight lang=cpp>
char *strchr(char const *s, int c);
|