January 21, 2015
https://issues.dlang.org/show_bug.cgi?id=8229

--- Comment #6 from Kenji Hara <k.hara.pg@gmail.com> ---
I'd just introduce a sample code.
>From the comment in issue 7570:

bool not_end(const char *s, const int n) {
    return s && s[n];
}
bool str_prefix(const char *s, const char *t, const int ns, const int nt) {
    return (s == t) || !*(t + nt) || (*(s + ns) == *(t + nt) && (str_prefix(s,
t, ns+1, nt+1)));
}
bool contains(const char *s, const char *needle, const int n=0) {
    return not_end(s, n) && (str_prefix(s, needle, n, 0) || contains(s, needle,
n+1));
}
enum int x = contains("froogler", "oogle");

Today the code fails to CTFE by the reading of string zero terminator. Supporting it in CTFE may be useful for C string operations.

--
December 13
https://issues.dlang.org/show_bug.cgi?id=8229

--- Comment #7 from dlangBugzillaToGithub <robert.schadek@posteo.de> ---
THIS ISSUE HAS BEEN MOVED TO GITHUB

https://github.com/dlang/dmd/issues/18450

DO NOT COMMENT HERE ANYMORE, NOBODY WILL SEE IT, THIS ISSUE HAS BEEN MOVED TO GITHUB

--