代码搜索:Convert

找到约 10,000 项符合「Convert」的源代码

代码结果 10,000
www.eeworm.com/read/16273/666486

c tolower.c

/*** *tolower.c - convert character to lower case * * Copyright (c) 1985-1997, Microsoft Corporation. All rights reserved. * *Purpose: * Defines function versions of _tolower() and t
www.eeworm.com/read/16273/666709

inc makefile.inc

PREOBJDIR = $(CPUDIR)\$(BLD_MODEL)_lib # Here is the target for building LIBC{,D} / LIBCMT{,D} / MSVCRT{,D}.LIB all: \ $(OBJDIR)\convert.lib \ !IF "$(TARGET_CPU)" != "PMAC"
www.eeworm.com/read/16273/667497

c atof.c

/*** *atof.c - convert char string to floating point number * * Copyright (c) 1985-1997, Microsoft Corporation. All rights reserved. * *Purpose: * Converts a character string into a
www.eeworm.com/read/16793/690618

c strtoul.c

/* strtoul - convert string representation of a number into an unsigned long value. */ /* Copyright (C) 1997 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again SHell.
www.eeworm.com/read/16793/690621

c strtoull.c

/* strtoull - convert string representation of a number into an unsigned long long value. */ /* Copyright (C) 1997 Free Software Foundation, Inc. This file is part of GNU Bash, the Bourne Again S
www.eeworm.com/read/37180/899602

cpp xt4-10.cpp

#include using namespace std; int main() {void convert(int n); int number; coutnumber; cout
www.eeworm.com/read/38039/1093921

mnu timescale.mnu

TIME#SCALE # Same#Val Keep the same value but change to selected time unit. # Convert#All Change all values to the new selected time unit. #
www.eeworm.com/read/471038/1434769

java talkclientapplet.java

/* * Java(TM) SE 6 version. * Exercise for the reader: Convert this applet to use SwingWorker * and Timer. SwingWorker can be downloaded at: * https://swingworker.dev.java.net/ * SwingWorker must
www.eeworm.com/read/470720/1451106

c udconvert.c

double unsigned_to_double1 (u) unsigned u; { double d; d = (int) u; /* convert as from a *signed* integer */ return ((int) u < 0) ? d + 4294967296.0 : d; } /* Alternatively */
www.eeworm.com/read/470693/1463052

c udconvert.c

double unsigned_to_double1 (u) unsigned u; { double d; d = (int) u; /* convert as from a *signed* integer */ return ((int) u < 0) ? d + 4294967296.0 : d; } /* Alternatively */