strinot.c
上传用户:s81996212
上传日期:2007-01-04
资源大小:722k
文件大小:0k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. /*
  2. ** Copyright 1998 - 2000 Double Precision, Inc.
  3. ** See COPYING for distribution information.
  4. */
  5. #if HAVE_CONFIG_H
  6. #include "config.h"
  7. #endif
  8. #include "numlib.h"
  9. #include <string.h>
  10. static const char rcsid[]="$Id: strinot.c,v 1.3 2000/05/27 04:59:26 mrsam Exp $";
  11. char *str_ino_t(ino_t t, char *arg)
  12. {
  13. char buf[NUMBUFSIZE];
  14. char *p=buf+sizeof(buf)-1;
  15. *p=0;
  16. do
  17. {
  18. *--p= '0' + (t % 10);
  19. t=t / 10;
  20. } while(t);
  21. return (strcpy(arg, p));
  22. }