hc11.h - HC11 Specific:
|
|
setbaud( ), read_sci( ), write_sci( ), read_spi( ), write_spi( )
/* IO in polled mode */
|
ctype.h:
|
|
isalnum( ), isalpha( ), iscntrl( ), isdigit( ), isgraph( ),
islower( ), isprint( ), ispunct( ), isspace( ), isupper( ),
isxdigit( ), tolower( ), toupper( )
|
math.h:
|
|
exp( ), fabs( ), log( ), log10( ), pow( ), sqrt( ),
sin( ), cos( ), tan( ), asin( ), acos( ), atan( ) /*
trig functions in radians */
|
setjmp.h:
|
|
setjmp( ), longjmp( )
|
stdarg.h:
|
|
va_start( ), va_arg( ), va_end( )
|
stdio.h:
|
|
getchar( ), putchar( ) /* in polled mode using SCI */ puts( ),
printf( ), sprintf( ) printf format includes %d %o %x %u %s %c %f.
|
stdlib.h:
|
|
abs( ), atoi( ), atof( ), atol( ), calloc( ), malloc( ),
realloc( ), free( ), exit( ), rand( ), srand( ), strtol( ),
strtoul( )
|
string.h:
|
|
memchr( ), memcmp( ), memmove( ), memset( ), strcat( ),
strchr( ), strcmp( ), strcpy( ), strcspn( ), strlen( ),
strncat( ), strncmp( ), strncpy( ), strpbrk( ), strrchr( ),
strspn( ), strstr( )
|
|