代码搜索:CASE
找到约 10,000 项符合「CASE」的源代码
代码结果 10,000
www.eeworm.com/read/375736/2720573
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/375736/2721500
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/375190/2733688
cpp no_case.cpp
/*=============================================================================
Copyright (c) 2001-2007 Joel de Guzman
http://spirit.sourceforge.net/
Distributed under the Boost Software
www.eeworm.com/read/363595/2914204
java case.java
package sudoku;
import java.util.ArrayList;
public class Case implements ICase
{
private ArrayList _casesAutresTableaux;
private ArrayList _iCaseListArrayList;
private Carre _carre;
private
www.eeworm.com/read/358128/3003704
result case.result
drop table if exists t1;
select CASE "b" when "a" then 1 when "b" then 2 END;
CASE "b" when "a" then 1 when "b" then 2 END
2
select CASE "c" when "a" then 1 when "b" then 2 END;
CASE "c" when "a" then