当前位置:  技术问答>linux和unix

请问,UNIX下的ctime(time_t *)函数的源码怎么找?

    来源: 互联网  发布时间:2015-10-05

    本文导语:  如题! 谢谢 | 摘自GNU/LINUX,RH9.0附带光盘源代码glibc. ctime.c /* Copyright (C) 1991, 1996 Free Software Foundation, Inc.    This file is part of the GNU C Library.    The GNU C Library is free software; you ...

如题!
谢谢

|
摘自GNU/LINUX,RH9.0附带光盘源代码glibc.
ctime.c
/* Copyright (C) 1991, 1996 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 the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, write to the Free
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
   02111-1307 USA.  */

#undef __OPTIMIZE__ /* Avoid inline `ctime' function.  */
#include 

#undef ctime


/* Return a string as returned by asctime which
   is the representation of *T in that form.  */
char *
ctime (const time_t *t)
{
  /* The C Standard says ctime (t) is equivalent to asctime (localtime (t)).
     In particular, ctime and asctime must yield the same pointer.  */
  return asctime (localtime (t));
}
----------------------------------------------
asctime.c
/* Copyright (C) 1991,1993,1995-1997,2000,2002 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 the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, write to the Free
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
   02111-1307 USA.  */

#include "../locale/localeinfo.h"
#include 
#include 
#include 

/* This is defined in locale/C-time.c in the GNU libc.  */
extern const struct locale_data _nl_C_LC_TIME attribute_hidden;
#define ab_day_name(DAY) (_nl_C_LC_TIME.values[_NL_ITEM_INDEX (ABDAY_1)+(DAY)].string)
#define ab_month_name(MON) (_nl_C_LC_TIME.values[_NL_ITEM_INDEX (ABMON_1)+(MON)].string)

static const char format[] = "%.3s %.3s%3d %.2d:%.2d:%.2d %dn";
static char result[          3+1+ 3+1+20+1+20+1+20+1+20+1+20+1 + 1];

/* Returns a string of the form "Day Mon dd hh:mm:ss yyyyn"
   which is the representation of TP in that form.  */
char *
asctime (const struct tm *tp)
{
  return __asctime_r (tp, result);
}
libc_hidden_def (asctime)

char *
__asctime_r (const struct tm *tp, char *buf)
{
  if (tp == NULL)
    {
      __set_errno (EINVAL);
      return NULL;
    }

  if (sprintf (buf, format,
       (tp->tm_wday tm_wday >= 7 ?
"???" : ab_day_name (tp->tm_wday)),
       (tp->tm_mon tm_mon >= 12 ?
"???" : ab_month_name (tp->tm_mon)),
       tp->tm_mday, tp->tm_hour, tp->tm_min,
       tp->tm_sec, 1900 + tp->tm_year) 

    
 
 

您可能感兴趣的文章:

  • 请问:定义了2个函数,其中第一个函数要访问另外一个函数的变量,怎么处理阿?谢谢
  • 请问如何根据函数指针打印出这个函数的名称?
  • jquery iis7站长之家
  • 请问在REDHAT下使用gcc编译器用的是什么函数库,函数库的资料应该上哪儿找?
  • 请问有JSP的函数大全吗?如session的所有函数。
  • 请问有没头函数<pthread.h>和<signal.h>里的函数的详细功能介绍?和使用方法???
  • 请问在JAVA里将小写字母换为大写字母是用什么函数,大写转成小写又是用哪个函数?
  • 请问如何在一个函数内部定义的一个新类中使用函数里声明的变量
  • 请问在rh7.2下面,semop()函数可以用其他什么函数来代替?
  • 请问ltoa这个函数的源代码文件叫什么名字(*.c)
  • 请问在linux/unix下有没有象GetKeyboardState()一样对键盘状态进行控制的函数?
  • 请问:java 的applet如何调用本地的c函数?
  • 请问哪儿有Motif的函数说明,比如像VC下的MSDN?
  • 请问这样写对吗?int 函数名(),变量;
  • 请问如何查看libX11.so中的函数实现
  • 请问linux下ftell函数的对应64位函数?
  • 请问在linux调试中能否有调用函数的显示时间
  • 请问用什么函数可以把String转换成int
  • 请问linux下有什么函数相当于MFC里的AfxIsValidAddress啊?
  • 请问,在linux下有没有类似messagebox这个函数。
  • 请问,shell的一些命令的源码在linux源码树中的那部分?
  • 请问怎么快速找到sys_open的源码
  • 请问freebsd的分发版有源码吗?
  • 请问到哪里找ftp程序的源码?如cuteftp
  • 请问如何在一个文件系统修改源码管理并使用多个卷(存储设备)
  • 请问,pipe 源码中,为何没有 pipe(...) 这个函数?
  • 请问哪里有蓝点(Blue Piont Linux)的源码下?!或者哪位有?!
  • 请问:哪里可以下tcp/ip详解书上程序的源码
  • 请问:有什么工具能在window底下查看linux的附盘源码?
  • 请问linux登录部分的源码在哪里?
  • 请问谁有聊天室程序的源码,最好是javacat的,急用,谢谢!!!
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 请问如何根据两个time_t获得之间的天数?注意,天数不能直接除以24*60*60来计算的,那样是不准确的
  • 请问:我知道路由器的telnet密码,但忘记了enable 密码,请问如何是好?
  • 请问那里有SYBASE的jbdb 2.0下载;jspsmartupload可以直接将文件上传到数据库,请问如何使用
  • 请问最新的reahat9.0是基于什么核心的?2.4?2.6?请问那里能下载?
  • 请问:请问哪里有关于linux基本操作命令讲解的资料下载,最好是幻灯片格式的.
  • 请问,我试图用#admintool&图形工具命令来安装sun workshop5.0,为什么进入的却是用户管理界面?请问具体该如何在solaris下安装应用软件
  • 请问在Redhat 9里,我从登录就是图形介面,请问如何在图形介面内进入命令行方式呢,谢谢
  • 请问玩过SOLARIS的高手门,在不正常关机后,就不能启动到windows公用桌面了,只能在命令提示模式下了,请问怎么解决这个问题啊?急~!~!
  • 请问:我在redhat下装了bochs-2.2.1-1.rpm,.装了后,想设置一下,但找不到bochsrc.fda.bxrc,请问这个文件在哪个曰录下啊。
  • 请问:在配置Qt时,很多文档都说在.profile,.login里加东西,但是我好像没有发现有这两个文件上,请问这些文件在哪个目录下啊
  • 请问:在GCC里的C程序里的变量的声明是不是只能在前面,而且相同类型的变量的声明只能放在一起?如果不是,请问怎么样可以解决这个问题.
  • 请问各位大虾,小弟今天开始学jsp了,这学期我们有java课,所以已经下载了jdk(好象是1.2),请问我的98环境怎么配置jsp环境呀?我的jdk可以运行.java程序,别的我就不知道了....谢谢!
  • 主机是WIN2000,我用的是LUNIX,请问是否可以共享上网? 如果可以请问如何设置? 500分答谢,龟儿食言!
  • 请问linux下GUI开发的问题!
  • 请问出现fstab文件丢失该怎么修复呀?
  • 请问这个方法如何调用?
  • 请问一个奇怪的问题!
  • 请问在网页中打开的新窗口,如何让其居中。
  • 请问我该学什么了
  • 请问安装zhcon,cxterm问题
  • 非常急! 请问daemontools 在red hat 9下的安装问题? 在线等待


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3