Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 88
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 215
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 216
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 217
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 218
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 219
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 220
PK ! 8ݹ primitive-types.expect.txtnu Iw const uint64_t MAX_INT_64;
struct position_tag;
PK ! R` function-declarations.expect.txtnu Iw decltype(auto) look_up_a_string_1() { return lookup1(); }
void look_up_a_string_2() { return lookup2(); }
friend void A::showB(B x) {}
friend void showB(B x) {}
friend void showB(B::SomeType x) {}
inline int add(int a, int b) {}
int8t Get_Tile_Value() {}
int8_t Get_Tile_Value() {}
B::type test() {};
boost::optional<application> handle_key(application state, key_code key, coord size);
test();
PK ! ;S2 function-params.expect.txtnu Iw int f(
int a = 1,
char* b = "2",
double c = 3.0,
ARRAY(int, 5) d,
void* e __attribute__((unused))
);
PK ! T{ { expression-keywords.expect.txtnu Iw double x = exp(log(2));
return 0;
PK ! pԛ function-declarations.txtnu Iw decltype(auto) look_up_a_string_1() { return lookup1(); }
void look_up_a_string_2() { return lookup2(); }
friend void A::showB(B x) {}
friend void showB(B x) {}
friend void showB(B::SomeType x) {}
inline int add(int a, int b) {}
int8t Get_Tile_Value() {}
int8_t Get_Tile_Value() {}
B::type test() {};
// template
boost::optional handle_key(application state, key_code key, coord size);
test();
PK ! |11 1 primitive-types.txtnu Iw const uint64_t MAX_INT_64;
struct position_tag;
PK ! h<=_ _ number-literals.txtnu Iw /* digit separators */
int number = 2'555'555'555; // digit separators
float exponentFloat = .123'456e3'000; // digit separators in floats
float suffixed = 3.000'001'234f // digit separators in suffixed numbers
char word[] = { '3', '\0' }; // make sure digit separators don't mess up chars
float negative = -123.0f; // negative floating point numbers
PK ! . . string-literals.expect.txtnu Iw
auto str = "Hello regular string";
auto utf8 = u8"Hello utf-8 string";
auto utf16 = u"Hello utf-16 string";
auto utf32 = U"Hello utf-32 string";
auto wide_char = L"Hello wchar_t string";
auto lr = LR"(Hello
world)";
auto wide_char = L'H';
auto cr = '\n';
auto chr = 'H';
auto utf8 = u8'H';
auto utf16 = u'H';
auto utf32 = U'H';
auto unicode = L'\u202e'
auto hex = '\xFF'
auto octal = '\123'
auto char_multi = R"(Hello
"normal"
multiline
string.)";
auto utf8_multi = u8R"(Hello
"utf-8"
multiline
string)";
auto utf16_multi = uR"(Hello
"utf-16"
multiline
string)";
auto utf32_multi = UR"(Hello
"utf-32"
multiline
string)";
auto char_multi = R"blah1(Hello
"normal"
multiline
)"
)blah"
string.)blah1";
auto utf8_multi = u8R"blah2(Hello
"utf-8"
multiline
)"
)blah"
string)blah2";
auto utf16_multi = uR"blah3(Hello
"utf-16"
multiline
)"
)blah"
string)blah3";
auto utf32_multi = UR"blah4(Hello
"utf-32"
multiline
)"
)blah"
string)blah4";
#include <stdio>
#include "lib.h"
PK ! ȳ preprocessor.expect.txtnu Iw #include <iostream>
#define foo 1<<16
#ifdef DEBUG
TYPE1 foo(void)
#else
int foo(void)
#endif
{ }
#define x(v) ((v))
# define x(v) ((v))
# define x(v) ((v))
#if MACRO_WITH_STRING_ARG("hello \"world\"")
#elif MULTI_LINE < \
EXPRESSION
int bar;
#endif
PK ! xɖ function-title.txtnu Iw int main() {
A a = new A();
int b = b * sum(1, 2);
if (a->check1())
return 3;
else if (a->check2())
return 4;
return a->result();
}
PK ! \&M function-title.expect.txtnu Iw int main() {
A a = new A();
int b = b * sum(1, 2);
if (a->check1())
return 3;
else if (a->check2())
return 4;
return a->result();
}
PK ! }j function-params.txtnu Iw int f(
int a = 1,
char* b = "2", // Line comment
double c = 3.0, /* Block comment */
ARRAY(int, 5) d,
void* e __attribute__((unused))
);
PK ! 0 number-literals.expect.txtnu Iw
int number = 2'555'555'555;
float exponentFloat = .123'456e3'000;
float suffixed = 3.000'001'234f
char word[] = { '3', '\0' };
float negative = -123.0f;
PK ! nbӸ preprocessor.txtnu Iw #include
#define foo 1<<16
#ifdef DEBUG
TYPE1 foo(void)
#else
int foo(void)
#endif
{ }
#define x(v) ((v))
# define x(v) ((v))
# define x(v) ((v))
#if MACRO_WITH_STRING_ARG("hello \"world\"")
#elif MULTI_LINE /* comment */ < \
EXPRESSION
int bar;
#endif // comment
PK ! يT k k expression-keywords.txtnu Iw double x = exp(log(2)); // recognize built-ins
return 0; // recognize keyword that started the expression
PK ! g8 pointers-returns.expect.txtnu Iw
char** foo_bar();
char ** foo_bar();
char **foo_bar();
PK ! ҍ string-literals.txtnu Iw // Unicode literals
auto str = "Hello regular string";
auto utf8 = u8"Hello utf-8 string";
auto utf16 = u"Hello utf-16 string";
auto utf32 = U"Hello utf-32 string";
// Wide-character strings
auto wide_char = L"Hello wchar_t string";
auto lr = LR"(Hello
world)";
// character literals
auto wide_char = L'H';
auto cr = '\n';
auto chr = 'H';
auto utf8 = u8'H';
auto utf16 = u'H';
auto utf32 = U'H';
auto unicode = L'\u202e'
auto hex = '\xFF'
auto octal = '\123'
// Raw string literals (multiline)
auto char_multi = R"(Hello
"normal"
multiline
string.)";
auto utf8_multi = u8R"(Hello
"utf-8"
multiline
string)";
auto utf16_multi = uR"(Hello
"utf-16"
multiline
string)";
auto utf32_multi = UR"(Hello
"utf-32"
multiline
string)";
// Raw string literals with delimiter (multiline)
auto char_multi = R"blah1(Hello
"normal"
multiline
)"
)blah"
string.)blah1";
auto utf8_multi = u8R"blah2(Hello
"utf-8"
multiline
)"
)blah"
string)blah2";
auto utf16_multi = uR"blah3(Hello
"utf-16"
multiline
)"
)blah"
string)blah3";
auto utf32_multi = UR"blah4(Hello
"utf-32"
multiline
)"
)blah"
string)blah4";
// Meta strings
#include
#include "lib.h"
PK ! JgO O pointers-returns.txtnu Iw // These will all work:
char** foo_bar();
char ** foo_bar();
char **foo_bar();
PK ! 8ݹ primitive-types.expect.txtnu Iw PK ! R` ! function-declarations.expect.txtnu Iw PK ! ;S2 < function-params.expect.txtnu Iw PK ! T{ { expression-keywords.expect.txtnu Iw PK ! pԛ
function-declarations.txtnu Iw PK ! |11 1 primitive-types.txtnu Iw PK ! h<=_ _ < number-literals.txtnu Iw PK ! . . string-literals.expect.txtnu Iw PK ! ȳ V preprocessor.expect.txtnu Iw PK ! xɖ $ function-title.txtnu Iw PK ! \&M _% function-title.expect.txtnu Iw PK ! }j a( function-params.txtnu Iw PK ! 0 A) number-literals.expect.txtnu Iw PK ! nbӸ &- preprocessor.txtnu Iw PK ! يT k k . expression-keywords.txtnu Iw PK ! g8 4/ pointers-returns.expect.txtnu Iw PK ! ҍ 1 string-literals.txtnu Iw PK ! JgO O D6 pointers-returns.txtnu Iw PK # 6