makedescaux.cpp

来自「NTL is a high-performance, portable C++ 」· C++ 代码 · 共 24 行

CPP
24
字号

#include <stdlib.h>

int val_int(int x) { return x; }
unsigned int val_uint(unsigned int x) { return x; }
 
long val_long(long x) { return x; }
unsigned long val_ulong(unsigned long x) { return x; }
 
size_t val_size_t(size_t x) { return x; }

double val_double(double x) { return x; }
 
void touch_int(int* x) {}
void touch_uint(unsigned int* x) {}
 
void touch_long(long* x) {}
void touch_ulong(unsigned long* x) {}

void touch_size_t(size_t* x) {}
 
void touch_double(double* x) {}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?