This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #define MUNIT_ENABLE_ASSERT_ALIASES | |
| #include "munit.h" | |
| static MunitResult | |
| test_int_equal(const MunitParameter params[], void* data) { | |
| int a = 5; | |
| int b = 5; | |
| assert_int(a, ==, b); | |
| return MUNIT_OK; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| char* red = "\033[1;31m"; | |
| char* blue = "\033[1;32m"; | |
| char* green = "\033[1;34m"; | |
| char* reset = "\033[0m"; | |
| typedef enum{ | |
| MALE, | |
| FEMALE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
| "palette": { | |
| "background": "#212121", | |
| "surface": "#303030", | |
| "primary": "#BB86FC", | |
| "secondary": "#03DAC6", | |
| "accent": "#CF6679", | |
| "text": "#FFFFFF", | |
| "text_secondary": "#B3B3B3", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <cstdlib> | |
| #include <string> | |
| #include <cstring> | |
| #include <unistd.h> | |
| #include <sys/types.h> | |
| #include <sys/socket.h> | |
| #include <arpa/inet.h> | |
| #include <netdb.h> | |
| #include <stdexcept> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <cstring> | |
| #include <ranges> | |
| #include <sys/socket.h> | |
| #include <netinet/in.h> | |
| #include <arpa/inet.h> | |
| #include <unistd.h> | |
| #include <vector> | |
| struct DNSHeaderFlags |
OlderNewer