Standard string operations for AVR. More...
#include <generic/string.h>Go to the source code of this file.
Functions | |
| static void * | memcpy (void *dest, const void *src, size_t n) |
| Copy memory area. | |
| static void * | memset (void *s, int c, size_t n) |
| Initialize memory area. | |
| static size_t | strlen (const char *str) |
| Calculate the length of a string. | |
| static int | strcmp (const char *str1, const char *str2) |
| Compare two strings str1 and str2. | |
| static int | strncmp (const char *str1, const char *str2, size_t n) |
| Compare the first n characters of two strings str1 and str2. | |
Standard string operations for AVR.
Copyright (C) 2009 - 2010 Atmel Corporation. All rights reserved.
Definition in file string.h.
1.6.3