代码搜索结果

找到约 10,000 项符合 R 的代码

ttyname_r.c

/* Copyright (C) 1991,92,93,1995-2001,2003,2006 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modi

readdir_r.c

#define readdir64_r __no_readdir64_r_decl #include #undef readdir64_r weak_alias (__readdir_r, readdir64_r)

strtok_r.s

#define FUNCTION __strtok_r #define USE_AS_STRTOK_R 1 #include weak_alias (BP_SYM (__strtok_r), BP_SYM (strtok_r)) strong_alias (BP_SYM (__strtok_r), BP_SYM (__GI___strtok

ttyname_r.c

/* Copyright (C) 1994, 95, 96, 98 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under th

getlogin_r.c

/* <mark>R</mark>eent<mark>r</mark>ant function to <mark>r</mark>etu<mark>r</mark>n the cu<mark>r</mark><mark>r</mark>ent login name. Hu<mark>r</mark>d ve<mark>r</mark>sion. Copy<mark>r</mark>ight (C) 1996, 2002 F<mark>r</mark>ee Softwa<mark>r</mark>e Foundation, Inc. This file is pa<mark>r</mark>t of the GNU C Lib<mark>r</mark>a<mark>r</mark>y. The GNU C Lib<mark>r</mark>a<mark>r</mark ...

readdir_r.c

/* Copyright (C) 1993,94,95,96,97,2001,02 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it

r_misc.c

/* ********************************************************************** * Micrium, Inc. * 949 Crestview Circle * Weston, FL 333

r_cnjg.c

#include "f2c.h" #include "netlib.h" #ifdef KR_headers VOID r_cnjg(r, z) complex *r, const complex *z; #else VOID r_cnjg(complex *r, const complex *z) #endif { r->r = z->r; r->i = -

r_sign.c

#include "f2c.h" #include "netlib.h" #ifdef KR_headers real r_sign(a,b) const real *a, *b; #else real r_sign(const real *a, const real *b) #endif { real x = (*a >= 0 ? *a : - *a); retur

r_imag.c

#include "f2c.h" #include "netlib.h" #ifdef KR_headers real r_imag(z) const complex *z; #else real r_imag(const complex *z) #endif { return z->i; }