stdlib.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:2k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * stdlib.h --
  3.  *
  4.  * Declares facilities exported by the "stdlib" portion of
  5.  * the C library.  This file isn't complete in the ANSI-C
  6.  * sense;  it only declares things that are needed by Tcl.
  7.  * This file is needed even on many systems with their own
  8.  * stdlib.h (e.g. SunOS) because not all stdlib.h files
  9.  * declare all the procedures needed here (such as strtod).
  10.  *
  11.  * Copyright (c) 1991 The Regents of the University of California.
  12.  * Copyright (c) 1994-1998 Sun Microsystems, Inc.
  13.  *
  14.  * See the file "license.terms" for information on usage and redistribution
  15.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  16.  *
  17.  * RCS: @(#) $Id: stdlib.h,v 1.3 1999/04/16 00:46:30 stanton Exp $
  18.  */
  19. #ifndef _STDLIB
  20. #define _STDLIB
  21. #include <tcl.h>
  22. extern void abort _ANSI_ARGS_((void));
  23. extern double atof _ANSI_ARGS_((CONST char *string));
  24. extern int atoi _ANSI_ARGS_((CONST char *string));
  25. extern long atol _ANSI_ARGS_((CONST char *string));
  26. extern char * calloc _ANSI_ARGS_((unsigned int numElements,
  27.     unsigned int size));
  28. extern void exit _ANSI_ARGS_((int status));
  29. extern int free _ANSI_ARGS_((char *blockPtr));
  30. extern char * getenv _ANSI_ARGS_((CONST char *name));
  31. extern char * malloc _ANSI_ARGS_((unsigned int numBytes));
  32. extern void qsort _ANSI_ARGS_((VOID *base, int n, int size,
  33.     int (*compar)(CONST VOID *element1, CONST VOID
  34.     *element2)));
  35. extern char * realloc _ANSI_ARGS_((char *ptr, unsigned int numBytes));
  36. extern double strtod _ANSI_ARGS_((CONST char *string, char **endPtr));
  37. extern long strtol _ANSI_ARGS_((CONST char *string, char **endPtr,
  38.     int base));
  39. extern unsigned long strtoul _ANSI_ARGS_((CONST char *string,
  40.     char **endPtr, int base));
  41. #endif /* _STDLIB */