代码搜索结果
找到约 820,005 项符合
if 的代码
tolower.c
#include
#include "_ctype.h"
int tolower(int c)
{
if (isupper(c))
return c - 'A' + 'a';
return c;
}
toupper.c
#include
#include "_ctype.h"
int toupper(int c)
{
if (islower(c))
return c - 'a' + 'A';
return c;
}
ltoa.c
#include
void ltoa(char *buf, unsigned long i, int base)
{
char *s;
#define LEN 25
int rem;
char rev[LEN+1];
if (i == 0)
s = "0";
else
{
rev[LEN] = 0;
s = &rev
atol.c
#include
#include
#include
long atol(CONST char *s)
{
int uminus;
long v;
while (isspace(*s))
s++;
uminus = 0;
if (*s == '-')
{
uminus = 1;
itoa.c
#include
void itoa(char *buf, unsigned int i, int base)
{
char *s;
#define LEN 10
int rem;
char rev[LEN+1];
if (i == 0)
s = "0";
else
{
rev[LEN] = 0;
s = &rev[
atoi.c
#include
#include
#include
int atoi(CONST char *s)
{
int uminus;
int v;
while (isspace(*s))
s++;
uminus = 0;
if (*s == '-')
{
uminus = 1;
sequence.vm
#if ($table.IdMethod == "sequence")
CREATE SEQUENCE $table.SequenceName;
#end
primarykey.vm
#if ($table.hasPrimaryKey())
PRIMARY KEY($table.printPrimaryKey()),
#end
drop.vm
drop table if exists $table.Name;
primarykey.vm
#if ($table.hasPrimaryKey())
PRIMARY KEY($table.printPrimaryKey()),
#end