代码搜索:CFront
找到约 1,009 项符合「CFront」的源代码
代码结果 1,009
www.eeworm.com/read/458360/7298598
h grp.h
/* @(#) grp.h 1.4 1/27/86 17:46:44 */
/*ident "@(#)cfront:incl/grp.h 1.4"*/
#ifndef FILE
# include
#endif
struct group { /* see getgrent(3) */
char *gr_name;
char *gr_passwd;
int g
www.eeworm.com/read/310556/13649142
c qtail.c
/* @(#) qtail.c 1.2 1/27/86 17:48:08 */
/*ident "@(#)cfront:lib/task/qtail.c 1.2"*/
#include "task.h"
qtail.qtail(int mode, int max) : (QTAIL)
/*
construct qtail oqueue
*/
{
DB(("x%x->qtail( %d
www.eeworm.com/read/310556/13649168
c sin.c
/*#ident "@(#)cfront:lib/complex/sin.c 1.3"*/
#include "complex.h"
#include "const.h"
complex
sin(complex z)
/*
sine of z: -i * sinh(i*z)
*/
{
complex y = complex(-z.im, z.re); /* i * z */
y = s
www.eeworm.com/read/310556/13649257
h ipc.h
/* @(#) ipc.h 1.4 1/27/86 17:47:05 */
/*ident "@(#)cfront:incl/sys/ipc.h 1.4"*/
/* Common IPC Access Structure */
// must be included.
struct ipc_perm {
ushort uid; /* owner's user id
www.eeworm.com/read/310556/13649265
h stream.h
/* @(#) stream.h 1.3 1/27/86 17:47:02 */
/*ident "@(#)cfront:incl/stream.h 1.3"*/
/*
stream.h, the header file for the C++ stream i/o system 4/06/85
*/
#ifndef NULL
#define NULL 0
#endif
#ifndef EOF
www.eeworm.com/read/310556/13649273
h grp.h
/* @(#) grp.h 1.4 1/27/86 17:46:44 */
/*ident "@(#)cfront:incl/grp.h 1.4"*/
#ifndef FILE
# include
#endif
struct group { /* see getgrent(3) */
char *gr_name;
char *gr_passwd;
int g
www.eeworm.com/read/458360/7298463
c qhead.c
/* @(#) qhead.c 1.2 1/27/86 17:48:07 */
/*ident "@(#)cfront:lib/task/qhead.c 1.2"*/
#include "task.h"
/* a qhead's qh_queue has its pointer q_ptr pointing the last
element of a circular list, so tha
www.eeworm.com/read/458360/7298480
c _vec.c
/* @(#) _vec.c 1.2 1/27/86 17:47:53 */
/*ident "@(#)cfront:lib/new/_vec.c 1.2"*/
typedef void* PV;
typedef void (*PF)(PV);
extern PV
_vec_new(PV op, int n, int sz, PV f)
/*
allocate a vector of "n"
www.eeworm.com/read/458360/7298492
c abs.c
/* @(#) abs.c 1.2 1/27/86 17:47:28 */
/*ident "@(#)cfront:lib/complex/abs.c 1.2"*/
#include "complex.h"
#include "const.h"
double
abs(complex z)
{
register double temp;
register double r = z.re;
r
www.eeworm.com/read/458360/7298497
c out.c
/* @(#) out.c 1.2 1/27/86 17:48:03 */
/*ident "@(#)cfront:lib/stream/out.c 1.2"*/
/*
C++ stream i/o source
out.c
*/
sprintf(char*,char* ...);
strlen(char*);
#include "stream.h"
#include