All the sources codes "Yet it works !"page 6
PHP
June 13, 2014 am30 10:29
#180
function get_cookie() {
return $_COOKIE;
}
Java
June 09, 2014 am30 01:58
#223
catch (OutOfMemoryError e) {
System.gc();
}
Markup
June 07, 2014 am30 11:35
#218
send(to, from, count)
register short *to, *from;
register count;
{
register n = (count + 7) / 8;
switch(count % 8) {
case 0: do { *to = *from++;
case 7: *to = *from++;
case 6: *to = *from++;
case 5: *to = *from++;
case 4: *to = *from++;
case 3: *to = *from++;
case 2: *to = *from++;
case 1: *to = *from++;
} while(--n > 0);
}
}