#include content

Back   |  HI-TECH   |  C-Library   |  #include   |  HPDPIC   |  Editor   |  PICL   |  Support  
conio.h
kbhit()bit kbhit (void);

ctype.h
isalnum()int isalnum (char c);
isalpha()int isalpha (char c);
isascii()int isascii (char c);
iscntrl()int iscntrl (char c);
isdigit()int isdigit (char c);
islower()int islower (char c);
isprint()int isprint (char c);
isgraph()int isgraph (char c);
ispunct()int ispunct (char c);
isspace()int isspace (char c);
isupper()int isupper (char c);
isxdigit()int isxdigit (char c);
toupper()char toupper (int c);
tolower()char tolower (int c);
toascii()char toascii (int c);

math.h
acos()double acos (double f);
asin()double asin (double f);
atan()double atan (double x);
atan2()double atan2 (double y, double x);
ceil()double ceil (double f);
cos()double cos (double f);
cosh()double cosh (double f);
eval_poly()double eval_poly (double x, const double * d, int n);
exp()double exp (double f);
fabs()double fabs (double f);
floor()double floor (double f);
frexp()double frexp (double f, int * p);
ldexp()double ldexp (double f, int i);
log()double log (double f);
log10()double log10 (double f);
modf()double modf (double value, double * iptr);
pow()double pow (double f, double p);
sin()double sin (double f);
sinh()double sinh (double f);
sqrt()double sqrt (double f);
tan()double tan (double f);
tanh()double tanh (double f);

pic.h
di()void di(void);
ei()void ei(void);
eeprom_read()unsigned char eeprom_read (unsigned char addr);
eeprom_write()void eeprom_write (unsigned char addr, unsigned char value);
get_cal_data()double get_cal_data (const unsigned char * code_ptr);

stdarg.h
va_start()void va_start (va_list ap, parmN );
va_arg()type va_arg (ap, type );
va_end()void va_end (va_list ap);

stdio.h
printf()unsigned char printf (const char * fmt, ...);
sprintf()unsigned char sprintf (char *buf, const char * fmt, ...);

stdlib.h
abs()int abs (int j);
atof()double atof (const char * s);
atoi()int atoi (const char * s);
atol()long atol (const char * s);
div()div_t div (int numer, int demon);
ldiv()ldiv_t ldiv (long number, long denom);
rand()int rand (void);
srand()void srand (unsigned int seed);
xtoi()unsigned xtoi (const char * s);

string.h
memchr()const void * memchr (const void * block, int val, size_t length);
memcmp()int memcmp (const void * s1, const void * s2, size_t n);
memcpy()void * memcpy (void * d, const void * s, size_t n);
memmove()void * memmove (void * s1, const void * s2, size_t n);
memset()void * memset (void * s, int c, size_t n);
strchr()const char * strchr (const char * s, int c);
strcmp()int strcmp (const char * s1, const char * s2);
strcpy()char * strcpy (char * s1, const char * s2);
strcspn()size_t strcspn (const char * s1, const char * s2);
strichr()const char * strichr (const char * s, int c);
stricmp()int stricmp (const char * s1, const char * s2);
stristr()const char * stristr (const char * s1, const char * s2);
strlen()size_t strlen (const char * s);
strncat()char * strncat (char * s1, const char * s2, size_t n);
strncmp()int strncmp (const char * s1, const char * s2, size_t n);
strncpy()char * strncpy (char * s1, const char * s2, size_t n);
strnicmp()int strnicmp (const char * s1, const char * s2, size_t n);
strpbrk()const char * strpbrk (const char * s1, const char * s2);
strrchr()const char * strrchr (char * s, int c);
strrichr()const char * strrichr (char * s, int c);
strspn()size_t strspn (const char * s1, const char * s2);
strstr()const char * strstr (const char * s1, const char * s2);
strtok()char * strtok (char * s1, const char * s2);

sys.h
persist_check()int persist_check (int flag);
persist_validate()void persist_validate (void);

time.h
asctime()char * asctime (struct tm * t);
ctime()char * ctime (time_t * t);
gmtime()struct tm * gmtime (time_t * t);
localtime()struct tm * localtime (time_t * t);
time()time_t time (time_t * t);

Created by Philippe Corbes (Email:philippe.corbes@laposte.net) 11/11/2002.