代码搜索:names
找到约 10,000 项符合「names」的源代码
代码结果 10,000
www.eeworm.com/read/413044/11168852
h names_st.h
// names_st.h -- names_st structure header file
// constants
#define SLEN 32
// structure declarations
struct names_st
{
char first[SLEN];
char last[SLEN];
};
// typedefs
typedef
www.eeworm.com/read/413044/11168856
c names_str.c
// names_str.c -- define names_st functions
#include
#include "names_str.h" // include the revised header file
// function definitions
void get_names(names * pn)
{
int i;
www.eeworm.com/read/413044/11168858
c names_st.c
// names_st.c -- define names_st functions
#include
#include "names_st.h" // include the header file
// function definitions
void get_names(names * pn)
{
int i;
pr
www.eeworm.com/read/413044/11168860
h names_str.h
// names_str.h --revised with include protection
#ifndef NAMES_H_
#define NAMES_H_
// constants
#define SLEN 32
// structure declarations
struct names_st
{
char first[SLEN];
cha
www.eeworm.com/read/413044/11169007
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/413044/11169018
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/413044/11169019
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/265772/11254355
c syscall-names.c
const char* const _syscall_names[] = {
"restart_syscall",
"exit",
"fork",
"read",
"write",
"open",
"close",
"waitpid",
"creat",
"link",
"unlink",
"execve",
"chdir",
"time",
www.eeworm.com/read/265772/11254371
c sig-names.c
const char* const _sig_names [] = {
"ZERO-SIGNAL"
"SIGHUP",
"SIGINT",
"SIGQUIT",
"SIGILL",
"SIGTRAP",
"SIGABRT",
"SIGIOT",
"SIGBUS",
"SIGFPE",
"SIGKILL",
"SIGUSR1",
www.eeworm.com/read/265706/11256030
m fg_names.m
function [fun, grad] = fg_names(alg)
%OTFUNGRA Returns names of functions which evaluate objective, constraints & grad.
% [fun, grad] = fg_names(alg) returns the names of two functions. The first
%