Changeset 359
- Timestamp:
- Mar 11, 2009, 3:22:11 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/System/Sources/libc/include/stdlib.h
r330 r359 1 /* $Id: stdlib.h,v 1.2 0 2009/02/19 21:24:36khorben Exp $ */1 /* $Id: stdlib.h,v 1.22 2009/03/02 00:24:33 khorben Exp $ */ 2 2 /* Copyright (c) 2009 Pierre Pronchery <khorben@defora.org> */ 3 3 /* This file is part of DeforaOS System libc */ … … 34 34 void abort(void); 35 35 int abs(int x); 36 int atexit(void (*function)(void)); 36 37 double atof(char const * str); 37 38 int atoi(char const * str); … … 62 63 float strtof(char const * str, char ** endptr); 63 64 long strtol(char const * str, char ** endptr, int base); 65 long long strtoll(char const * str, char ** endptr, int base); 64 66 unsigned long strtoul(char const * str, char ** endptr, int base); 67 unsigned long long strtoull(char const * str, char ** endptr, int base); 65 68 int system(char const * command); 66 69 int unlockpt(int fildes);
Note: See TracChangeset
for help on using the changeset viewer.