代码搜索:names
找到约 10,000 项符合「names」的源代码
代码结果 10,000
www.eeworm.com/read/475965/1374260
c names1.c
/* names1.c -- uses pointers to a structure */
#include
#include
struct namect {
char fname[20];
char lname[20];
int letters;
};
void getinfo(struct namect
www.eeworm.com/read/475965/1374267
c names3.c
// names3.c -- use pointers and malloc()
#include
#include // for strcpy(), strlen()
#include // for malloc(), free()
struct namect {
char * fname; // u
www.eeworm.com/read/475965/1374268
c names2.c
/* names2.c -- passes and returns structures */
#include
#include
struct namect {
char fname[20];
char lname[20];
int letters;
};
struct namect getinfo(voi
www.eeworm.com/read/472233/1413409
pl make_names.pl
#!/usr/bin/perl -w
# Copyright (C) 2005, 2006, 2007, 2009 Apple Inc. All rights reserved.
# Copyright (C) 2009, Julien Chaffraix
#
# Redistribution and use in source and binar
www.eeworm.com/read/470720/1451768
c asm-names.c
/* The name specified by an asm("...") suffix on a declaration is not
to have an underscore prefixed, even if normal symbols are.
Problem reported by Krister Walfridsson . */
/
www.eeworm.com/read/470693/1463714
c asm-names.c
/* The name specified by an asm("...") suffix on a declaration is not
to have an underscore prefixed, even if normal symbols are.
Problem reported by Krister Walfridsson . */
/
www.eeworm.com/read/458810/1583464
properties jmx-names.properties
namingTest = bean:name=namingTest
www.eeworm.com/read/458008/1590589
rb routes_with_names.rb
#---
# Excerpted from "Agile Web Development with Rails, 2nd Ed."
# We make no guarantees that this code is fit for any purpose.
# Visit http://www.pragmaticprogrammer.com/titles/rails2 for more book
www.eeworm.com/read/250015/4443508
h rt_names.h
/* vi: set sw=4 ts=4: */
#ifndef RT_NAMES_H_
#define RT_NAMES_H_ 1
#include
extern const char* rtnl_rtprot_n2a(int id, char *buf, int len);
extern const char* rtnl_rtscope_n2a(int id, cha
www.eeworm.com/read/250015/4443514
c rt_names.c
/* vi: set sw=4 ts=4: */
/*
* rt_names.c rtnetlink names DB.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
*