src/compat/memcpy.h File Reference

#include "src/main.h"
#include <string.h>
Include dependency graph for memcpy.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void * egg_memcpy (void *dest, const void *src, size_t n)

Function Documentation

void* egg_memcpy ( void *  dest,
const void *  src,
size_t  n 
)

Definition at line 29 of file memcpy.c.

Referenced by core_secondly(), egg_strdup(), main(), MD5_Update(), queue_server(), removedcc(), and tcl_eggstr().

00030 {
00031   while (n--)
00032     *((char *) dest)++ = *((char *) src)++;
00033   return dest;
00034 }

Here is the caller graph for this function:


Generated on 7 Sep 2016 for Eggdrop by  doxygen 1.6.1