代码搜索:CASE
找到约 10,000 项符合「CASE」的源代码
代码结果 10,000
www.eeworm.com/read/358128/3004653
test case.test
#
# Testing of CASE
#
--disable_warnings
drop table if exists t1;
--enable_warnings
select CASE "b" when "a" then 1 when "b" then 2 END;
select CASE "c" when "a" then 1 when "b" then 2 END;
select C
www.eeworm.com/read/260597/4330578
c case.c
/*
COW : Character Oriented Windows
case.c: conversion of foreign lower case to upper case
*/
#define COW
#include
#include "case.h"
/*
-- SzLcUc: maps lower -> upper case
www.eeworm.com/read/260597/4331505
txt case.txt
SUMMARY lower upper MakeStr
#include
char *lower(pstr)
char *pstr;
char *upper(pstr)
char *pstr;
DESCRIPTION
lower and upper convert the string to lower and upper case.
R
www.eeworm.com/read/254811/4380208
c case.c
/*
COW : Character Oriented Windows
case.c: conversion of foreign lower case to upper case
*/
#define COW
#include
#include "case.h"
/*
-- SzLcUc: maps lower -> upper case
www.eeworm.com/read/254811/4380444
txt case.txt
SUMMARY lower upper MakeStr
#include
char *lower(pstr)
char *pstr;
char *upper(pstr)
char *pstr;
DESCRIPTION
lower and upper convert the string to lower and upper case.
R
www.eeworm.com/read/162614/5537204
java case.java
// Simple compiler test.
public class Case
{
public static int foo (int i, support.Case x)
{
switch (i)
{
case x.A:
return 1;
default:
return 0;
}
}
}