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
ddns-update-style interim; | |
ignore client-updates; | |
subnet 192.168.10.0 netmask 255.255.255.0 { | |
option routers 192.168.10.1; | |
option subnet-mask 255.255.255.0; | |
option domain-name-servers 192.168.248.21; | |
option ntp-servers 192.168.0.1; |
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 <algorithm> | |
#include <cassert> | |
#include <climits> | |
#include <cstdio> | |
#include <deque> | |
typedef std::deque<int> stack; | |
void move_top1(stack& from, stack& to, stack& spare); | |
int top(const stack& o) |
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 <sys/types.h> | |
#include <sys/stat.h> | |
#include <fcntl.h> | |
#include <stdint.h> | |
#include <malloc.h> | |
#include <unistd.h> | |
struct FstHdr { | |
uint32_t signature; | |
uint32_t width; |
NewerOlder