qq2011下载-9-28 23:35:201...

>> mysql-3.23.35-_-include-_-m_string.h - 介绍:MySQL是比较出名的数据
点击查看更多 ▼
点击收缩隐藏 ▲
mysql-3.23.35-_-include-_-m_string.h - 介绍:MySQL是比较出名的数据
源码下载: &
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
This libr you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software F either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License alo if not, write to the Free
Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
MA , USA */
/* There may be prolems include all of theese. Try to test in
configure with ones are needed? */
This is needed for the definitions of strchr... on solaris */
#ifndef _m_string_h
#define _m_string_h
#ifndef __USE_GNU
#define __USE_GNU
/* We want to use stpcpy */
#if defined(HAVE_STRINGS_H)
#include &strings.h&
#if defined(HAVE_STRING_H)
#include &string.h&
/* Correct some things for UNIXWARE7 */
#ifdef HAVE_UNIXWARE7_THREADS
#undef HAVE_STRINGS_H
#undef HAVE_MEMORY_H
#define HAVE_MEMCPY
#ifndef HAVE_MEMMOVE
#define HAVE_MEMMOVE
#undef HAVE_BCMP
#undef bcopy
#undef bcmp
#undef bzero
#endif /* HAVE_UNIXWARE7_THREADS */
#ifdef _AIX
#undef HAVE_BCMP
This is needed for the definitions of bzero... on solaris */
#if defined(HAVE_STRINGS_H) && !defined(HAVE_mit_thread)
#include &strings.h&
This is needed for the definitions of memcpy... on solaris */
#if defined(HAVE_MEMORY_H) && !defined(__cplusplus)
#include &memory.h&
#if !defined(HAVE_MEMCPY) && !defined(HAVE_MEMMOVE)
# define memcpy(d, s, n) bcopy ((s), (d), (n))
# define memset(A,C,B)
bfill((A),(B),(C))
# define memmove(d, s, n) bmove ((d), (s), (n))
#elif defined(HAVE_MEMMOVE)
# define bmove(d, s, n)
memmove((d), (s), (n))
# define memmove(d, s, n) bmove((d), (s), (n)) /* our bmove */
#if defined(HAVE_STPCPY) && !defined(HAVE_mit_thread)
#define strmov(A,B) stpcpy((A),(B))
/* Unixware 7 */
#if !defined(HAVE_BFILL)
# define bfill(A,B,C)
memset((A),(C),(B))
# define bmove_allign(A,B,C)
memcpy((A),(B),(C))
#if !defined(HAVE_BCMP)
# define bcopy(s, d, n)
memcpy((d), (s), (n))
# define bcmp(A,B,C)
memcmp((A),(B),(C))
# define bzero(A,B)
memset((A),0,(B))
# define bmove_allign(A,B,C)
memcpy((A),(B),(C))
#ifdef __cplusplus
extern &C& {
extern char NEAR _dig_vec[];
/* Declared in int2str() */
#ifdef BAD_STRING_COMPILER
#define strmov(A,B)
(memccpy(A,B,0,INT_MAX)-1)
#define strmov_overlapp(A,B) strmov(A,B)
#define strmake_overlapp(A,B,C) strmake(A,B,C)
#ifdef BAD_MEMCPY
/* Problem with gcc on Alpha */
#define memcpy_fixed(A,B,C) bmove((A),(B),(C))
#define memcpy_fixed(A,B,C) memcpy((A),(B),(C))
#ifdef MSDOS
#undef bmove_allign
#define bmove512(A,B,C) bmove_allign(A,B,C)
#define my_itoa(A,B,C) itoa(A,B,C)
#define my_ltoa(A,B,C) ltoa(A,B,C)
extern void bmove_allign(gptr dst,const gptr src,uint len);
#if (!defined(USE_BMOVE512) || defined(HAVE_purify)) && !defined(bmove512)
#define bmove512(A,B,C) memcpy(A,B,C)
/* Prototypes for string functions */
#if !defined(bfill) && !defined(HAVE_BFILL)
extern void bfill(gptr dst,uint len,pchar fill);
#if !defined(bzero) && !defined(HAVE_BZERO)
extern void bzero(gptr dst,uint len);
#if !defined(bcmp) && !defined(HAVE_BCMP)
extern int bcmp(const char *s1,const char *s2,uint len);
#ifdef HAVE_purify
extern int my_bcmp(const char *s1,const char *s2,uint len);
#define bcmp(A,B,C) my_bcmp((A),(B),(C))
#ifndef bmove512
extern void bmove512(gptr dst,const gptr src,uint len);
#if !defined(HAVE_BMOVE) && !defined(bmove)
extern void bmove(char *dst, const char *src,uint len);
extern void bmove_upp(char *dst,const char *src,uint len);
extern void bchange(char *dst,uint old_len,const char *src,
uint new_len,uint tot_len);
extern void strappend(char *s,uint len,pchar fill);
extern char *strend(const char *s);
extern char *strcend(const char *, pchar);
extern char *strfield(char *src,int fields,int chars,int blanks,
int tabch);
extern char *strfill(my_string s,uint len,pchar fill);
extern uint strinstr(const char *str,const char *search);
uint r_strinstr(reg1 my_string str,int from, reg4 my_string search);
extern char *strkey(char *dst,char *head,char *tail,char *flags);
extern char *strmake(char *dst,const char *src,uint length);
#ifndef strmake_overlapp
extern char *strmake_overlapp(char *dst,const char *src, uint length);
#ifndef strmov
extern char *strmov(char *dst,const char *src);
extern char *strnmov(char *dst,const char *src,uint n);
extern char *strsuff(const char *src,const char *suffix);
extern char *strcont(const char *src,const char *set);
extern char *strxcat _VARARGS((char *dst,const char *src, ...));
extern char *strxmov _VARARGS((char *dst,const char *src, ...));
extern char *strxcpy _VARARGS((char *dst,const char *src, ...));
extern char *strxncat _VARARGS((char *dst,uint len, const char *src, ...));
extern char *strxnmov _VARARGS((char *dst,uint len, const char *src, ...));
extern char *strxncpy _VARARGS((char *dst,uint len, const char *src, ...));
/* Prototypes of normal stringfunctions (with may ours) */
#ifdef WANT_STRING_PROTOTYPES
extern char *strcat(char *, const char *);
extern char *strchr(const char *, pchar);
extern char *strrchr(const char *, pchar);
extern char *strcpy(char *, const char *);
extern int strcmp(const char *, const char *);
#ifndef __GNUC__
extern size_t strlen(const char *);
#ifndef HAVE_STRNLEN
extern uint strnlen(const char *s, uint n);
#if !defined(__cplusplus)
#ifndef HAVE_STRPBRK
extern char *strpbrk(const char *, const char *);
#ifndef HAVE_STRSTR
extern char *strstr(const char *, const char *);
extern int is_prefix(const char *, const char *);
/* Conversion rutins */
#ifdef USE_MY_ITOA
extern char *my_itoa(int val,char *dst,int radix);
extern char *my_ltoa(long val,char *dst,int radix);
extern char *llstr(longlong value,char *buff);
#ifndef HAVE_STRTOUL
extern long strtol(const char *str, char **ptr, int base);
extern ulong strtoul(const char *str, char **ptr, int base);
extern char *int2str(long val,char *dst,int radix);
extern char *int10_to_str(long val,char *dst,int radix);
extern char *str2int(const char *src,int radix,long lower,long upper,
long *val);
#if SIZEOF_LONG == SIZEOF_LONG_LONG
#define longlong2str(A,B,C) int2str((A),(B),(C))
#define longlong10_to_str(A,B,C) int10_to_str((A),(B),(C))
#define strtoll(A,B,C) strtol((A),(B),(C))
#define strtoull(A,B,C) strtoul((A),(B),(C))
#ifndef HAVE_STRTOULL
#define HAVE_STRTOULL
#ifdef HAVE_LONG_LONG
extern char *longlong2str(longlong val,char *dst,int radix);
extern char *longlong10_to_str(longlong val,char *dst,int radix);
#if (!defined(HAVE_STRTOULL) || defined(HAVE_mit_thread)) || defined(NO_STRTOLL_PROTO)
extern longlong strtoll(const char *str, char **ptr, int base);
extern ulonglong strtoull(const char *str, char **ptr, int base);
#ifdef __cplusplus
源码下载: &
源码文件列表
温馨提示: 点击源码文件名可预览文件内容哦 ^_^
名称大小日期
&&&0.00 B 20:01
&15.22 kB 20:00
&1.93 kB 19:51
&stamp-h.in10.00 B 20:00
&2.29 kB 19:51
&5.41 kB 19:51
&acinclude.m429.81 kB 19:51
&aclocal.m447.06 kB 19:51
&config.guess32.99 kB 19:51
&config.h.in17.49 kB 19:51
&config.sub23.92 kB 19:51
&300.60 kB 19:52
&56.82 kB 19:51
&install-sh5.45 kB 19:51
&ltconfig95.50 kB 19:51
&108.25 kB 19:51
&missing6.14 kB 19:51
&mkinstalldirs668.00 B 19:51
&INSTALL-SOURCE201.41 kB 19:54
&COPYING19.00 kB 19:54
&COPYING.LIB26.72 kB 19:54
&MIRRORS2.83 kB 19:54
&&&0.00 B 20:00
&10.90 kB 20:00
&2.15 kB 19:51
&mysql_version.h.in641.00 B 19:51
&29.22 kB 19:51
&9.24 kB 19:51
&6.71 kB 19:51
&5.46 kB 19:51
&3.12 kB 19:51
&1.41 kB 19:51
&13.61 kB 19:51
&9.07 kB 19:51
&3.36 kB 19:51
&1.78 kB 19:51
&3.22 kB 19:51
&1.74 kB 19:51
&10.08 kB 19:51
&1.67 kB 19:51
&2.05 kB 19:51
&2.09 kB 19:51
&2.42 kB 19:51
&2.22 kB 19:51
&2.70 kB 19:51
&3.75 kB 19:51
&4.69 kB 19:51
&4.79 kB 19:51
&2.95 kB 19:51
&3.36 kB 19:51
&7.28 kB 19:51
&23.68 kB 19:51
&10.31 kB 19:51
&8.40 kB 19:51
&6.80 kB 19:51
&1.54 kB 19:51
&20.19 kB 19:51
&1.18 kB 19:51
&5.70 kB 19:51
&1.93 kB 19:51
&29.22 kB 19:53
&1.29 kB 19:51
&1.57 kB 19:51
&1.27 kB 19:51
&1.21 kB 19:51
&1,013.00 B 19:51
&5.71 kB 19:51
&&&0.00 B 20:00
&15.41 kB 20:00
&&&0.00 B 20:00
&texi2html57.76 kB 19:51
&generate-text-files.pl530.00 B 19:51
&generate-mirror-listing.pl561.00 B 19:51
&5.11 kB 19:51
&manual.texi1.84 MB 19:51
&1.72 MB 19:53
&1.87 MB 19:53
&2.04 MB 19:54
&72.65 kB 19:54
&include.texi96.00 B 19:53
&14.60 kB 19:51
&INSTALL-BINARY14.09 kB 19:54
&&&0.00 B 20:00
&argentina.gif348.00 B 20:00
&australia.gif689.00 B 20:00
&austria.gif132.00 B 20:00
&brazil.gif662.00 B 20:00
&bulgaria.gif141.00 B 20:00
&canada.gif407.00 B 20:00
&chile.gif370.00 B 20:00
&china.gif224.00 B 20:00
&croatia.gif659.00 B 20:00
&czech-republic.gif248.00 B 20:00
&denmark.gif253.00 B 20:00
&estonia.gif126.00 B 20:00
&finland.gif192.00 B 20:00
&france.gif158.00 B 20:00
&germany.gif126.00 B 20:00
&great-britain.gif1.17 kB 20:00
&greece.gif282.00 B 20:00
&hungary.gif141.00 B 20:00
&iceland.gif197.00 B 20:00
&ireland.gif158.00 B 20:00
&&island.gif&0.00 B 20:00
&israel.gif368.00 B 20:00
&italy.gif158.00 B 20:00
&japan.gif357.00 B 20:00
&&kroatia.gif&0.00 B 20:00
&netherlands.gif141.00 B 20:00
&poland.gif132.00 B 20:00
&portugal.gif633.00 B 20:00
&romania.gif158.00 B 20:00
&russia.gif141.00 B 20:00
&singapore.gif389.00 B 20:00
&south-africa.gif650.00 B 20:00
&south-africa1.gif650.00 B 20:00
&south-korea.gif663.00 B 20:00
&spain.gif138.00 B 20:00
&sweden.gif193.00 B 20:00
&switzerland.gif237.00 B 20:00
&taiwan.gif377.00 B 20:00
&ukraine.gif132.00 B 20:00
&usa.gif731.00 B 20:00
&argentina.eps4.02 kB 20:00
&australia.eps4.02 kB 20:00
&austria.eps4.02 kB 20:00
&brazil.eps4.02 kB 20:00
&bulgaria.eps4.02 kB 20:00
&canada.eps4.02 kB 20:00
&chile.eps4.02 kB 20:00
&china.eps4.02 kB 20:00
&croatia.eps4.02 kB 20:00
&czech-republic.eps4.02 kB 20:00
&denmark.eps4.02 kB 20:00
&estonia.eps4.02 kB 20:00
&finland.eps4.02 kB 20:00
&france.eps4.02 kB 20:00
&germany.eps4.02 kB 20:00
&great-britain.eps4.02 kB 20:00
&greece.eps4.02 kB 20:00
&hungary.eps4.02 kB 20:00
&iceland.eps4.02 kB 20:00
&ireland.eps4.02 kB 20:00
&&island.eps&0.00 B 20:00
&israel.eps4.02 kB 20:00
&italy.eps4.02 kB 20:00
&japan.eps4.02 kB 20:00
&&kroatia.eps&0.00 B 20:00
&netherlands.eps4.02 kB 20:00
&poland.eps4.02 kB 20:00
&portugal.eps4.02 kB 20:00
&romania.eps4.02 kB 20:00
&russia.eps4.02 kB 20:00
&singapore.eps4.02 kB 20:00
&south-africa.eps4.02 kB 20:00
&south-africa1.eps4.02 kB 20:00
&south-korea.eps4.02 kB 20:00
&spain.eps4.02 kB 20:00
&sweden.eps4.02 kB 20:00
&switzerland.eps4.02 kB 20:00
&taiwan.eps4.02 kB 20:00
&ukraine.eps4.02 kB 20:00
&usa.eps4.02 kB 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&0.00 B 20:00
&manual.ps117.00 B 20:00
&&&0.00 B 20:00
&14.08 kB 20:00
&6.40 kB 19:51
&COPYING17.56 kB 19:51
&INSTALL7.29 kB 19:51
&939.00 B 19:51
&77.00 kB 19:51
&3.24 kB 19:51
&48.83 kB 19:51
&8.55 kB 19:51
&3.56 kB 19:51
&28.68 kB 19:51
&3.94 kB 19:51
&16.37 kB 19:51
&49.51 kB 19:51
&47.30 kB 19:51
&11.70 kB 19:51
&43.57 kB 19:51
&10.50 kB 19:51
&7.73 kB 19:51
&14.06 kB 19:51
&5.70 kB 19:51
&6.90 kB 19:51
&11.95 kB 19:51
&4.19 kB 19:51
&13.80 kB 19:51
&2.23 kB 19:51
&9.60 kB 19:51
&4.94 kB 19:51
&32.51 kB 19:51
&9.12 kB 19:51
&5.43 kB 19:51
&9.04 kB 19:51
&3.10 kB 19:51
&11.21 kB 19:51
&4.05 kB 19:51
&2.43 kB 19:51
&2.13 kB 19:51
&4.27 kB 19:51
&1.52 kB 19:51
&495.00 B 19:51
&2.66 kB 19:51
&2.14 kB 19:51
&2.14 kB 19:51
&1.29 kB 19:51
&1.65 kB 19:51
&2.05 kB 19:51
&23.55 kB 19:51
&3.77 kB 19:51
&3.37 kB 19:51
&9.05 kB 19:51
&33.31 kB 19:51
&32.16 kB 19:51
&&&0.00 B 20:00
&&&0.00 B 19:51
&474.00 B 19:51
&syscall-template-hppa-hpux-10.20.S797.00 B 19:51
&&&0.00 B 19:51
&499.00 B 19:51
&1.24 kB 19:51
&288.00 B 19:51
&834.00 B 19:51
&6.17 kB 19:51
&436.00 B 19:51
&46.00 B 19:51
&106.00 B 19:51
&2.62 kB 19:51
&1.64 kB 19:51
&1.81 kB 19:51
&469.00 B 19:51
&3.22 kB 19:51
&5.28 kB 19:51
&2.50 kB 19:51
&1.96 kB 19:51
&&&0.00 B 19:51
&303.00 B 19:51
&2.56 kB 19:51
&2.33 kB 19:51
&105.00 B 19:51
&360.00 B 19:51
&3.87 kB 19:51
&569.00 B 19:51
&1.96 kB 19:51
&502.00 B 19:51
&253.00 B 19:51
&676.00 B 19:51
&294.00 B 19:51
&375.00 B 19:51
&57.00 B 19:51
&5.49 kB 19:51
&2.23 kB 19:51
&&&0.00 B 19:51
&1.98 kB 19:51
&239.00 B 19:51
&328.00 B 19:51
&904.00 B 19:51
&1.19 kB 19:51
&215.00 B 19:51
&103.00 B 19:51
&2.65 kB 19:51
&5.87 kB 19:51
&2.65 kB 19:51
&2.33 kB 19:51
&613.00 B 19:51
&1.94 kB 19:51
&&&0.00 B 19:51
&4.13 kB 19:51
&2.54 kB 19:51
&trash.can61.00 B 19:51
&2.02 kB 19:51
&3.60 kB 19:51
&2.00 kB 19:51
&17.48 kB 19:51
&5.97 kB 19:51
&3.39 kB 19:51
&3.74 kB 19:51
&&&0.00 B 19:51
&1.85 kB 19:51
&4.09 kB 19:51
&2.70 kB 19:51
&3.02 kB 19:51
&&&0.00 B 19:51
&242.00 B 19:51
&93.00 B 19:51
&256.00 B 19:51
&2.56 kB 19:51
&182.00 B 19:51
&3.57 kB 19:51
&6.83 kB 19:51
&573.00 B 19:51
&4.21 kB 19:51
&1.94 kB 19:51
&1.94 kB 19:51
&2.74 kB 19:51
&5.40 kB 19:51
&2.17 kB 19:51
&&&0.00 B 19:51
&239.00 B 19:51
&904.00 B 19:51
&215.00 B 19:51
&613.00 B 19:51
&5.87 kB 19:51
&2.59 kB 19:51
&2.65 kB 19:51
&1.98 kB 19:51
&103.00 B 19:51
&1.94 kB 19:51
&328.00 B 19:51
&1.19 kB 19:51
&2.33 kB 19:51
&&&0.00 B 19:51
&2.56 kB 19:51
&&&0.00 B 19:51
&&&0.00 B 19:51
&349.00 B 19:51
&5.49 kB 19:51
&862.00 B 19:51
&57.00 B 19:51
&502.00 B 19:51
&1.96 kB 19:51
&3.87 kB 19:51
&2.28 kB 19:51
&360.00 B 19:51
&2.43 kB 19:51
&569.00 B 19:51
&294.00 B 19:51
&&socketcall.h&0.00 B 19:51
&253.00 B 19:51
&5.63 kB 19:51
&303.00 B 19:51
&375.00 B 19:51
&105.00 B 19:51
&&&0.00 B 19:51
&256.00 B 19:51
&6.83 kB 19:51
&5.40 kB 19:51
&1.94 kB 19:51
&2.74 kB 19:51
&2.29 kB 19:51
&1.94 kB 19:51
&2.58 kB 19:51
&3.67 kB 19:51
&182.00 B 19:51
&598.00 B 19:51
&242.00 B 19:51
&97.00 B 19:51
&&&0.00 B 19:51
&2.60 kB 19:51
&283.00 B 19:51
&7.17 kB 19:51
&5.03 kB 19:51
&573.00 B 19:51
&3.61 kB 19:51
&93.00 B 19:51
&5.48 kB 19:51
&1.98 kB 19:51
&732.00 B 19:51
&2.21 kB 19:51
&3.60 kB 19:51
&1.98 kB 19:51
&182.00 B 19:51
&&&0.00 B 19:51
&717.00 B 19:51
&416.00 B 19:51
&27.00 B 19:51
&1.94 kB 19:51
&3.42 kB 19:51
&5.26 kB 19:51
&2.76 kB 19:51
&3.21 kB 19:51
&193.00 B 19:51
&59.00 B 19:51
&2.50 kB 19:51
&459.00 B 19:51
&2.68 kB 19:51
&1.22 kB 19:51
&113.00 B 19:51
&313.00 B 19:51
&1.78 kB 19:51
&&&0.00 B 19:51
&2.53 kB 19:51
&135.00 B 19:51
&1.64 kB 19:51
&1.86 kB 19:51
&6.17 kB 19:51
&2.62 kB 19:51
&469.00 B 19:51
&436.00 B 19:51
&288.00 B 19:51
&3.22 kB 19:51
&499.00 B 19:51
&5.28 kB 19:51
&46.00 B 19:51
&834.00 B 19:51
&1.28 kB 19:51
&1.96 kB 19:51
&&&0.00 B 19:51
&23.00 B 19:51
&374.00 B 19:51
&414.00 B 19:51
&354.00 B 19:51
&212.00 B 19:51
&229.00 B 19:51
&22.00 B 19:51
&142.00 B 19:51
&10.08 kB 19:51
&2.45 kB 19:51
&130.00 B 19:51
&4.14 kB 19:51
&33.00 B 19:51
&1.24 kB 19:51
&8.12 kB 19:51
&2.84 kB 19:51
&syscall-template-m68000-netbsd.S924.00 B 19:51
&&&0.00 B 19:51
&6.84 kB 19:51
&104.00 B 19:51
&181.00 B 19:51
&2.50 kB 19:51
&2.21 kB 19:51
&1.98 kB 19:51
&5.40 kB 19:51
&3.67 kB 19:51
&172.00 B 19:51
&282.00 B 19:51
&255.00 B 19:51
&572.00 B 19:51
&2.74 kB 19:51
&2.74 kB 19:51
&6.30 kB 19:51
&5.48 kB 19:51
&116.00 B 19:51
&664.00 B 19:51
&syscall-template-arm32-netbsd-1.3.S960.00 B 19:51
&&&0.00 B 19:51
&2.74 kB 19:51
&&&0.00 B 19:51
&4.09 kB 19:51
&2.00 kB 19:51
&3.74 kB 19:51
&trash.can61.00 B 19:51
&&&0.00 B 19:51
&1.85 kB 19:51
&5.97 kB 19:51
&4.13 kB 19:51
&3.02 kB 19:51
&3.60 kB 19:51
&2.70 kB 19:51
&2.02 kB 19:51
&17.48 kB 19:51
&3.39 kB 19:51
&2.54 kB 19:51
&2.19 kB 19:51
&685.00 B 19:51
&664.00 B 19:51
&6.50 kB 19:51
&&&0.00 B 19:51
&1.94 kB 19:51
&2.74 kB 19:51
&2.50 kB 19:51
&9.15 kB 19:51
&&&0.00 B 19:51
&1.94 kB 19:51
&2.62 kB 19:51
&2.50 kB 19:51
&2.62 kB 19:51
&1.29 kB 19:51
&7.24 kB 19:51
&3.06 kB 19:51
&2.02 kB 19:51
&433.00 B 19:51
&4.05 kB 19:51
&30.00 B 19:51
&272.00 B 19:51
&2.53 kB 19:51
&113.00 B 19:51
&syscall-template-i386-freebsd-2.0.S980.00 B 19:51
&3.37 kB 19:51
&&&0.00 B 19:51
&6.83 kB 19:51
&2.29 kB 19:51
&242.00 B 19:51
&598.00 B 19:51
&1.94 kB 19:51
&2.74 kB 19:51
&182.00 B 19:51
&256.00 B 19:51
&5.40 kB 19:51
&2.58 kB 19:51
&3.62 kB 19:51
&97.00 B 19:51
&1.94 kB 19:51
&syscall-template-ip22-irix-5.2.S1,012.00 B 19:51
&&&0.00 B 19:51
&9.80 kB 19:51
&528.00 B 19:51
&458.00 B 19:51
&130.00 B 19:51
&100.00 B 19:51
&73.00 B 19:51
&1.92 kB 19:51
&132.00 B 19:51
&596.00 B 19:51
&587.00 B 19:51
&401.00 B 19:51
&3.20 kB 19:51
&3.34 kB 19:51
&syscall-i386-netbsd-0.9.S6.41 kB 19:51
&491.00 B 19:51
&syscall-i386-openbsd-2.0.S5.98 kB 19:51
&5.23 kB 19:51
&553.00 B 19:51
&513.00 B 19:51
&&&0.00 B 19:51
&6.83 kB 19:51
&9.42 kB 19:51
&2.43 kB 19:51
&1.94 kB 19:51
&2.92 kB 19:51
&6.63 kB 19:51
&syscall-powerpc-netbsd.S3.71 kB 19:51
&syscall-template-i386-bsdi-2.0.S791.00 B 19:51
&syscall-template-sparc-netbsd-1.1.S752.00 B 19:51
&2.38 kB 19:51
&syscall-sparc-sunos-4.1.3.S2.15 kB 19:51
&2.92 kB 19:51
&1.56 kB 19:51
&6.86 kB 19:51
&syscall-template-sparc-netbsd-1.3.S942.00 B 19:51
&24.98 kB 19:51
&syscall-template-i386-netbsd-1.3.S951.00 B 19:51
&629.00 B 19:51
&6.00 kB 19:51
&474.00 B 19:51
&syscall-template-i386-openbsd-2.0.S780.00 B 19:51
&2.51 kB 19:51
&5.47 kB 19:51
&syscall-i386-freebsd-1.1.S7.94 kB 19:51
&syscall-m68000-netbsd.S1.47 kB 19:51
&664.00 B 19:51
&syscall-i386-netbsd-1.0.S4.45 kB 19:51
&syscall-template-alpha-osf1.S1.11 kB 19:51
&syscall-template-i386-netbsd-1.1.S773.00 B 19:51
&2.42 kB 19:51
&2.19 kB 19:51
&syscall-template-sparc-sunos-5.3.S781.00 B 19:51
&syscall-template-alpha-netbsd-1.1.S1.17 kB 19:51
&syscall-arm32-netbsd-1.3.S5.12 kB 19:51
&2.53 kB 19:51
&syscall-hppa-hpux-9.03.S477.00 B 19:51
&syscall-i386-linux-1.0.S8.11 kB 19:51
&syscall-template-sparc-sunos4.S752.00 B 19:51
&2.16 kB 19:51
&syscall-r2000-ultrix-4.2.S5.18 kB 19:51
&11.53 kB 19:51
&716.00 B 19:51
&662.00 B 19:51
&762.00 B 19:51
&syscall-template-powerpc-netbsd.S1.07 kB 19:51
&2.57 kB 19:51
&syscall-alpha-netbsd-1.1.S4.72 kB 19:51
&2.19 kB 19:51
&syscall-sparc-sunos4.S2.15 kB 19:51
&syscall-sparc-netbsd-1.1.S1.80 kB 19:51
&syscall-sparc-netbsd-1.3.S3.16 kB 19:51
&syscall-alpha-osf1.S2.01 kB 19:51
&syscall-i386-bsdi-1.1.S7.84 kB 19:51
&syscall-i386-bsdi-2.0.S9.62 kB 19:51
&5.30 kB 19:51
&629.00 B 19:51
&syscall-romp-bsd.S5.54 kB 19:51
&762.00 B 19:51
&5.30 kB 19:51
&6.45 kB 19:51
&6.63 kB 19:51
&syscall-i386-netbsd-1.3.S5.25 kB 19:51
&1.56 kB 19:51
&1.56 kB 19:51
&5.25 kB 19:51
&syscall-hppa-hpux-10.20.S477.00 B 19:51
&7.26 kB 19:51
&5.54 kB 19:51
&syscall-i386-netbsd-1.1.S4.82 kB 19:51
&syscall-sparc-sunos-5.3.S1.28 kB 19:51
&474.00 B 19:51
&4.30 kB 19:51
&684.00 B 19:51
&2.18 kB 19:51
&6.46 kB 19:51
&2.29 kB 19:51
&syscall-template-hppa-hpux-9.03.S797.00 B 19:51
&syscall-template-i386-netbsd1.0.S801.00 B 19:51
&2.32 kB 19:51
&2.25 kB 19:51
&491.00 B 19:51
&syscall-ip22-irix-5.2.S2.11 kB 19:51
&2.31 kB 19:51
&syscall-template-alpha-netbsd-1.3.S1.33 kB 19:51
&6.07 kB 19:51
&3.92 kB 19:51
&2.18 kB 19:51
&685.00 B 19:51
&2.23 kB 19:51
&2.38 kB 19:51
&syscall-template-r2000-ultrix-4.2.S2.90 kB 19:51
&syscall-i386-sco-3.2v5.S8.57 kB 19:51
&7.77 kB 19:51
&2.34 kB 19:51
&664.00 B 19:51
&syscall-template-i386-sco-3.2v5.S1.06 kB 19:51
&11.57 kB 19:51
&5.84 kB 19:51
&3.03 kB 19:51
&2.93 kB 19:51
&syscall-i386-freebsd-2.0.S5.82 kB 19:51
&2.79 kB 19:51
&syscall-alpha-netbsd-1.3.S5.21 kB 19:51
&syscall-i386-linux-2.0.S7.83 kB 19:51
&5.89 kB 19:51
&&&0.00 B 19:51
&28.98 kB 19:51
&8.46 kB 19:51
&7.27 kB 19:51
&2.98 kB 19:51
&11.94 kB 19:51
&3.19 kB 19:51
&3.06 kB 19:51
&17.78 kB 19:51
&23.54 kB 19:51
&5.78 kB 19:51
&50.60 kB 19:51
&9.44 kB 19:51
&4.76 kB 19:51
&3.59 kB 19:51
&4.45 kB 19:51
&10.22 kB 19:51
&4.07 kB 19:51
&3.43 kB 19:51
&281.00 B 19:51
&2.77 kB 19:51
&9.24 kB 19:51
&1.50 kB 19:51
&2.41 kB 19:51
&11.37 kB 19:51
&3.27 kB 19:51
&5.46 kB 19:51
&10.98 kB 19:51
&2.95 kB 19:51
&2.80 kB 19:51
&7.42 kB 19:51
&7.76 kB 19:51
&3.36 kB 19:51
&2.89 kB 19:51
&2.17 kB 19:51
&4.45 kB 19:51
&5.30 kB 19:51
&3.03 kB 19:51
&2.57 kB 19:51
&5.57 kB 19:51
&1.54 kB 19:51
&2.24 kB 19:51
&3.73 kB 19:51
&&&0.00 B 19:51
&777.00 B 19:51
&820.00 B 19:51
&605.00 B 19:51
&&&0.00 B 19:51
&4.29 kB 19:51
&2.13 kB 19:51
&4.00 kB 19:51
&3.09 kB 19:51
&13.64 kB 19:51
&2.92 kB 19:51
&195.00 B 19:51
&363.00 B 19:51
&2.54 kB 19:51
&4.02 kB 19:51
&3.36 kB 19:51
&2.33 kB 19:51
&&&0.00 B 19:53
&743.00 B 19:51
&214.00 B 19:51
&532.00 B 19:51
&151.00 B 19:51
&2.14 kB 19:51
&1.22 kB 19:51
&1.57 kB 19:51
&2.46 kB 19:51
&1.59 kB 19:51
&5.29 kB 19:51
&2.38 kB 19:51
&1.02 kB 19:51
&862.00 B 19:51
&2.13 kB 19:51
&2.41 kB 19:51
&230.00 B 19:51
&841.00 B 19:51
&1.89 kB 19:51
&.cvsignore9.00 B 19:51
&2.25 kB 19:51
&1.47 kB 19:51
&1.69 kB 19:51
&1.80 kB 19:51
&2.18 kB 19:51
&4.51 kB 19:51
&1.96 kB 19:51
&4.61 kB 19:51
&1.43 kB 19:51
&1.93 kB 19:51
&667.00 B 19:51
&1.83 kB 19:51
&1.37 kB 19:51
&470.00 B 19:51
&2.13 kB 19:51
&5.43 kB 19:53
&&&0.00 B 20:00
&4.34 kB 19:51
&3.76 kB 19:51
&&&0.00 B 20:00
&3.35 kB 19:51
&4.15 kB 19:51
&5.93 kB 19:51
&321.00 B 19:54
&980.00 B 19:51
&3.31 kB 19:51
&2.18 kB 19:51
&2.58 kB 19:51
&2.28 kB 19:51
&385.00 B 19:54
&2.01 kB 19:51
&state.def2.28 kB 19:51
&648.00 B 19:51
&2.40 kB 19:51
&2.53 kB 19:51
&2.64 kB 19:51
&2.78 kB 19:51
&2.29 kB 19:51
&2.10 kB 19:51
&2.27 kB 19:51
&112.00 B 19:54
&3.62 kB 19:51
&1.85 kB 19:51
&6.38 kB 19:51
&4.30 kB 19:51
&3.02 kB 19:51
&&&0.00 B 19:51
&10.08 kB 19:51
&2.54 kB 19:51
&4.99 kB 19:51
&3.44 kB 19:51
&2.11 kB 19:51
&5.67 kB 19:51
&3.57 kB 19:51
&12.39 kB 19:51
&2.10 kB 19:51
&1,015.00 B 19:51
&3.39 kB 19:51
&2.12 kB 19:51
&3.44 kB 19:51
&11.09 kB 19:51
&6.55 kB 19:51
&1.93 kB 19:51
&&&0.00 B 19:51
&349.00 B 19:51
&5.49 kB 19:51
&&&0.00 B 19:51
&4.70 kB 19:51
&2.41 kB 19:51
&2.52 kB 19:51
&2.24 kB 19:51
&5.49 kB 19:51
&2.20 kB 19:51
&2.24 kB 19:51
&2.96 kB 19:51
&2.33 kB 19:51
&3.20 kB 19:51
&2.40 kB 19:51
&4.99 kB 19:51
&4.89 kB 19:51
&2.48 kB 19:51
&2.81 kB 19:51
&2.24 kB 19:51
&2.29 kB 19:51
&2.30 kB 19:51
&6.67 kB 19:51
&2.15 kB 19:51
&1.73 kB 19:51
&3.39 kB 19:51
&3.55 kB 19:51
&29.13 kB 19:51
&2.96 kB 19:51
&2.59 kB 19:51
&2.65 kB 19:51
&4.45 kB 19:51
&2.54 kB 19:51
&2.28 kB 19:51
&2.37 kB 19:51
&2.49 kB 19:51
&2.25 kB 19:51
&2.49 kB 19:51
&3.04 kB 19:51
&5.71 kB 19:51
&3.21 kB 19:51
&2.27 kB 19:51
&2.73 kB 19:51
&3.38 kB 19:51
&2.69 kB 19:51
&2.29 kB 19:51
&2.31 kB 19:51
&2.63 kB 19:51
&2.27 kB 19:51
&2.46 kB 19:51
&2.33 kB 19:51
&2.18 kB 19:51
&2.85 kB 19:51
&2.86 kB 19:51
&2.15 kB 19:51
&3.86 kB 19:51
&5.02 kB 19:51
&2.27 kB 19:51
&2.61 kB 19:51
&2.22 kB 19:51
&2.46 kB 19:51
&3.17 kB 19:51
&2.51 kB 19:51
&939.00 B 19:51
&2.17 kB 19:51
&2.47 kB 19:51
&2.85 kB 19:51
&3.38 kB 19:51
&2.23 kB 19:51
&2.30 kB 19:51
&18.81 kB 19:51
&742.00 B 19:51
&3.34 kB 19:51
&17.65 kB 19:51
&3.00 kB 19:51
&3.38 kB 19:51
&4.72 kB 19:51
&2.58 kB 19:51
&2.22 kB 19:51
&2.33 kB 19:51
&2.23 kB 19:51
&2.26 kB 19:51
&&&0.00 B 19:51
&77.05 kB 19:51
&config.h.in8.80 kB 19:51
&1.60 kB 19:51
&install-sh4.66 kB 19:51
&3.32 kB 19:51
&config.sub15.98 kB 19:51
&93.17 kB 19:51
&COPYRIGHT229.00 B 19:51
&aclocal.m43.02 kB 19:51
&COPYING.GNU17.56 kB 19:51
&20.51 kB 19:51
&1.98 kB 19:51
&config.guess13.88 kB 19:51
&config.flags.in2.39 kB 19:51
&&&0.00 B 19:51
&4.30 kB 19:51
&564.00 B 19:51
&3.08 kB 19:51
&2.61 kB 19:51
&2.33 kB 19:51
&2.79 kB 19:51
&2.57 kB 19:51
&2.30 kB 19:51
&5.03 kB 19:51
&2.99 kB 19:51
&2.56 kB 19:51
&547.00 B 19:51
&4.62 kB 19:51
&4.09 kB 19:51
&16.85 kB 19:51
&461.00 B 19:51
&8.01 kB 19:51
&2.85 kB 19:51
&3.03 kB 19:51
&2.42 kB 19:51
&3.03 kB 19:51
&2.80 kB 19:51
&2.45 kB 19:51
&15.47 kB 19:51
&2.74 kB 19:51
&2.80 kB 19:51
&6.24 kB 19:51
&2.33 kB 19:51
&4.12 kB 19:51
&5.07 kB 19:51
&2.60 kB 19:51
&9.07 kB 19:51
&2.90 kB 19:51
&4.09 kB 19:51
&2.81 kB 19:51
&5.31 kB 19:51
&2.32 kB 19:51
Sponsored links
23 篇源代码 21 篇源代码 18 篇源代码 13 篇源代码 9 篇源代码
285 篇源代码 173 篇源代码 48 篇源代码 42 篇源代码 36 篇源代码
登录 CodeForge
还没有CodeForge账号?
Switch to the English version?
CF仔没有找到您要的代码,请去留下您的问题吧,可能会有大神帮助你哦!
该用户暂时未开通博客
请按 Ctrl+D 键添加到收藏夹。}

我要回帖

更多关于 qq2011下载 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信