代码搜索:Convert
找到约 10,000 项符合「Convert」的源代码
代码结果 10,000
www.eeworm.com/read/179157/9367820
c convert.c
#include
#include
#include
#include
int code_convert(char *from_charset,char *to_charset,char *inbuf,int inlen,char *outbuf,int outlen)
{
iconv_t cd;
int r
www.eeworm.com/read/179157/9368013
c convert.c
#include
#include
#define OUTLEN 255
main()
{
char *in_utf8 ="璐疯
www.eeworm.com/read/177981/9424509
c convert.c
/*
* GENESIS Copyright (c) 1986, 1990 by John J. Grefenstette
* This program may be freely copied for educational
* and research purposes. All other rights reserved.
*
* file: conver
www.eeworm.com/read/373225/9468548
sch convert.sch
www.eeworm.com/read/373220/9468692
m convert.m
function convert
% Copyright (c) 1996 Philipos C. Loizou
global HDRSIZE Srate
global sfHnd hdrHnd cnvFig
pos = get(0, 'screensize');
wi=350;
he=180;
ypos=(pos(4)-he)/2;
xpos=(pos(3)-wi)
www.eeworm.com/read/177066/9470229
c convert.c
#include "convert.h"
#include
int stoi(char *s,int radix)
{
char *p = s;
int val = 0;
if ( radix==8 )
// oct
{
p++; // skip leading '0'
while (
www.eeworm.com/read/177066/9470240
h convert.h
#ifndef _C_CONVERT_H_
#define _C_CONVERT_H_
int stoi(char *s,int radix);
#endif
www.eeworm.com/read/373036/9476812
exe convert.exe
www.eeworm.com/read/176965/9478746
bat convert.bat
"C:\Program Files\Macraigor Systems\Flash Programmer\BinToS19.exe" 51EDA_BIOS_Data\BIOS_51EDA\51EDA_BIOS.bin 0 BIOS_51EDA.s19
www.eeworm.com/read/372762/9494336
c convert.c
# include
# include
int main()
{
char num1[80], num2[80];
double sum1;
int sum2;
long sum3;
printf("Enter first: ");
gets(num1);
printf("Enter second: ");
g