custom.hh

来自「MySql C++ library」· HH 代码 · 共 75 行

HH
75
字号
// This file is generated from the perl script custom.pl, please do // not modify this file directly.#ifndef __sql_custom_h__#define __sql_custom_h__enum sql_dummy_type {sql_dummy};enum sql_cmp_type {sql_use_compare};inline int sql_cmp(const string &a, const string &b) {  return a.compare(b);}inline int sql_cmp(char a,char b) {  return a-b;}inline int sql_cmp(unsigned char a,unsigned char b) {  return a-b;}inline int sql_cmp(tiny_int a,tiny_int b) {  return a-b;}inline int sql_cmp(int a,int b) {  return a-b;}inline int sql_cmp(unsigned int a,unsigned int b) {  return a-b;}inline int sql_cmp(short int a,short int b) {  return a-b;}inline int sql_cmp(unsigned short int a,unsigned short int b) {  return a-b;}inline int sql_cmp(double a,double b) {  if (a == b) return 0;  if (a <  b) return -1;  return 1;}inline int sql_cmp(float a,float b) {  if (a == b) return 0;  if (a <  b) return -1;  return 1;}#ifndef NO_LONG_LONGSinline int sql_cmp(longlong a,longlong b) {  if (a == b) return 0;  if (a <  b) return -1;  return 1;}inline int sql_cmp(ulonglong a,ulonglong b) {  if (a == b) return 0;  if (a <  b) return -1;  return 1;}#endif // NO_LONG_LONGS#include "custom-macros.hh"#endif

⌨️ 快捷键说明

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