代码搜索:String

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

代码结果 10,000
www.eeworm.com/read/477944/6726452

h string.h

/* We don't want strings.h stuff being user by user stuff by accident */ //#include /* for size_t */ //#include /* for NULL */ #include "types.h" extern char * __
www.eeworm.com/read/477944/6726476

c string.c

/* * linux/lib/string.c * * Copyright (C) 1991, 1992 Linus Torvalds */ /* * stupid library routines.. The optimized versions should generally be found * as inline code in
www.eeworm.com/read/477944/6726486

h string.h

/* We don't want strings.h stuff being user by user stuff by accident */ //#include /* for size_t */ //#include /* for NULL */ #include "types.h" extern char * __
www.eeworm.com/read/476941/6743312

c string.c

#include "types.h" void* memset(void *dst, int c, uint n) { char *d; d = (char*)dst; while(n-- > 0) *d++ = c; return dst; } int memcmp(const void *v1, const void *v2, uint n) { const
www.eeworm.com/read/476712/6748678

c string.c

/* * linux/lib/string.c * * Copyright (C) 1991, 1992 Linus Torvalds */ /* * stupid library routines.. The optimized versions should generally be found * as inline code in
www.eeworm.com/read/476712/6748688

h string.h

/* We don't want strings.h stuff being user by user stuff by accident */ //#include /* for size_t */ //#include /* for NULL */ #include "types.h" extern char * __
www.eeworm.com/read/410397/11288195

cc string.cc

// Larbin // Sebastien Ailleret // 20-12-99 -> 10-12-01 #include #include #include "options.h" #include "utils/text.h" #include "utils/string.h" // Constructor LarbinStrin
www.eeworm.com/read/410397/11288208

h string.h

// Larbin // Sebastien Ailleret // 20-12-99 -> 05-05-01 #ifndef STRING_HH #define STRING_HH #include #include "types.h" #include "utils/debug.h" class LarbinString { private: char *c
www.eeworm.com/read/409992/11305348

h string.h

#ifndef __STRINGS_H__ #define __STRINGS_H__ /* * This is strings.h * * We have virtually a full set of these routines! * Most of the common ones have been tested and * used in my programs * *
www.eeworm.com/read/409897/11307678

h string.h

// File: string.h /* * Copyright (c) 1998-1999 Murphy Cheng-Che Chen * * This program is free software; you can redistribute it and/or modify * it under the t