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> | |
int a(int x,int y){ | |
return 1; | |
} | |
double b(int x, int y){ | |
return 1.5; | |
} |
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 <chrono> | |
#include <optional> | |
#include <zmq.h> | |
#include <zmq.hpp> | |
namespace zmq | |
{ | |
using timer_id_t = int; |
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> | |
struct withshort | |
{ | |
short c : 4; | |
short c2 : 4; | |
short c3 : 1; | |
short c4 : 7; | |
}; |
OlderNewer