C Language Services [POSIX Section 8]

Functions Implemented

char *setlocale( int category, const char *locale ); 
int fileno( FILE *stream ); 
FILE *fdopen( int fd, const char *type ); 
int getc_unlocked( FILE *stream); 
int getchar_unlocked( void ); 
int putc_unlocked( FILE *stream ); 
int putchar_unlocked( void ); 
char *strtok_r( char *s, const char *sep, 
                char **lasts ); 
char *asctime_r( const struct tm *tm, char *buf ); 
char *ctime_r( const time_t *clock, char *buf ); 
struct tm *gmtime_r( const time_t *clock,
                     struct tm *result ); 
struct tm *localtime_r( const time_t *clock,
                        struct tm *result ); 
int rand_r( unsigned int *seed );

Functions Omitted

void flockfile( FILE *file ); 
int ftrylockfile( FILE *file ); 
void funlockfile( FILE *file ); 
int sigsetjmp( sigjmp_buf env, int savemask );			// TBA 
void siglongjmp( sigjmp_buf env, int val );			// TBA 
void tzset(void);                                                       // TBA

Notes