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> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <sys/types.h> | |
#include <sys/socket.h> | |
#include <netinet/in.h> | |
#include <unistd.h> | |
#include <sys/uio.h> | |
#define BUF_SIZE 1024 |
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
OPTION(NNG_TESTS "Build and run tests." OFF) | |
OPTION(NNG_TOOLS "Build extra tools." OFF) | |
OPTION(NNG_ELIDE_DEPRECATED "Elide deprecated functionality." OFF) | |
OPTION(NNG_ENABLE_COVERAGE "Enable coverage reporting." OFF) | |
OPTION(NNG_ENABLE_NNGCAT "Enable building nngcat utility." OFF) | |
OPTION(NNG_ENABLE_STATS "Enable statistics." OFF) | |
# Protocols. | |
OPTION(NNG_PROTO_REQ0 "Enable REQv0 protocol." ON) | |
OPTION(NNG_PROTO_REP0 "Enable REPv0 protocol." ON) |
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
/****************************************************************************** | |
Author: Jihang Li (Jihang.Li_AT_outlook.com) | |
Last update: 2021-06-28 19:09 | |
******************************************************************************/ | |
#ifndef NEU_H | |
#define NEU_H | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <condition_variable> |
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
let scrollstep = 100 | |
set smoothscroll | |
command bd tabnew baidu | |
command bi tabnew bing | |
command dg tabnew duckduckgo | |
command gl tabnew google | |
let searchalias bd = "baidu" | |
let searchalias bi = "bing" | |
let searchalias dg = "duckduckgo" | |
let searchalias gl = "google" |