EE445M RTOS
Taken at the University of Texas Spring 2015
|
#include "nexus.h"
Go to the source code of this file.
Functions | |
void * | memset (void *b, int c, int len) |
uint32_t | ustrlen (const char *s) |
void * | memcpy (void *str1, const void *str2, long n) |
int | strcmp (const char *s1, const char *s2) |
int | ustrncmp (const char *s1, const char *s2, uint32_t n) |
void | ustrcpy (char *dest, const char *source) |
void* memcpy | ( | void * | , |
const void * | , | ||
long | |||
) |
A duplicate of the c standard memcpy function.
Definition at line 25 of file nexus.c.
Referenced by shell_set_ps1().
void* memset | ( | void * | , |
int | , | ||
int | |||
) |
A duplicate of the c standard memset function.
Definition at line 4 of file nexus.c.
Referenced by shell_clear_shell_buffer(), and system_register_command().
int strcmp | ( | const char * | , |
const char * | |||
) |
A duplicate of the c standard strcmp function.
Definition at line 35 of file nexus.c.
References ustrncmp().
Referenced by _system_command_from_name().
void ustrcpy | ( | char * | , |
const char * | |||
) |
A duplicate of the c standard strcpy function.
Definition at line 69 of file nexus.c.
Referenced by system_register_command().
uint32_t ustrlen | ( | const char * | s | ) |
A duplicate of the c standard strlen function.
Definition at line 17 of file nexus.c.
Referenced by shell_set_ps1(), and uart_send_string_().