My Project
|
#include <string.h>
#include <wchar.h>
#include <stdlib.h>
#include <unistd.h>
Go to the source code of this file.
Functions | |
void | kernel_putchar (char c) |
void | az_putoctal (int n) |
void | az_putunsigned (unsigned int n) |
void * | az_memalloc (size_t size) |
int | az_isdigit (int c) |
int | az_isalpha (int c) |
char * | az_itoa (int value, int base) |
int | az_chrpos (const char *s, int c) |
char * | az_strsub (char const *s, unsigned int start, size_t len) |
size_t | az_nbrlen (int n) |
int | az_isprint (int c) |
size_t | az_strlen (const char *s) |
void | az_puthex (unsigned int n) |
void | az_putnbr (int n) |
void * | az_memset (void *b, int c, size_t len) |
void | az_bzero (void *s, size_t n) |
void | az_putchar_fd (char c, int fd) |
void | az_putstr (const char *s) |
int | az_atoi (const char *s) |
int | az_strcmp (const char *s1, const char *s2) |
char * | az_strchr (const char *s, int c) |
void az_bzero | ( | void * | s, |
size_t | n ) |
Definition at line 12 of file az_bzero.c.
int az_chrpos | ( | const char * | s, |
int | c ) |
Definition at line 12 of file az_chrpos.c.
int az_isalpha | ( | int | c | ) |
Definition at line 12 of file az_isalpha.c.
int az_isdigit | ( | int | c | ) |
Definition at line 12 of file az_isdigit.c.
int az_isprint | ( | int | c | ) |
Definition at line 12 of file az_isprint.c.
void * az_memalloc | ( | size_t | size | ) |
Definition at line 13 of file az_memalloc.c.
void * az_memset | ( | void * | b, |
int | c, | ||
size_t | len ) |
Definition at line 12 of file az_memset.c.
size_t az_nbrlen | ( | int | n | ) |
Definition at line 12 of file az_nbrlen.c.
void az_putchar_fd | ( | char | c, |
int | fd ) |
Definition at line 13 of file az_putchar_fd.c.
void az_puthex | ( | unsigned int | n | ) |
Definition at line 12 of file az_puthex.c.
void az_putnbr | ( | int | n | ) |
Definition at line 12 of file az_putnbr.c.
void az_putoctal | ( | int | n | ) |
Definition at line 12 of file az_putoctal.c.
void az_putstr | ( | const char * | s | ) |
Definition at line 12 of file az_putstr.c.
void az_putunsigned | ( | unsigned int | n | ) |
Definition at line 12 of file az_putunsigned.c.
char * az_strchr | ( | const char * | s, |
int | c ) |
Definition at line 13 of file az_strchr.c.
int az_strcmp | ( | const char * | s1, |
const char * | s2 ) |
Definition at line 12 of file az_strcmp.c.
size_t az_strlen | ( | const char * | s | ) |
Definition at line 12 of file az_strlen.c.
char * az_strsub | ( | char const * | s, |
unsigned int | start, | ||
size_t | len ) |
Definition at line 12 of file az_strsub.c.
void kernel_putchar | ( | char | c | ) |
Definition at line 13 of file az_putchar.c.