docs: Adding the doxygen on all my function
This commit is contained in:
parent
707e9a4177
commit
f5bcbeac3c
38 changed files with 342 additions and 43 deletions
|
|
@ -6,12 +6,21 @@
|
|||
/* By: rparodi <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/11/07 16:49:46 by rparodi #+# #+# */
|
||||
/* Updated: 2023/11/13 19:14:23 by rparodi ### ########.fr */
|
||||
/* Updated: 2024/10/31 17:57:31 by rparodi ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libft.h"
|
||||
|
||||
/**
|
||||
* @brief Copies memory from source to destination
|
||||
*
|
||||
* @param dest Pointer to the destination memory area
|
||||
* @param src Pointer to the source memory area
|
||||
* @param n Number of bytes to copy from src to dest
|
||||
*
|
||||
* @return A pointer to the destination memory area dest
|
||||
*/
|
||||
void *ft_memcpy(void *dest, const void *src, size_t n)
|
||||
{
|
||||
char *d;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue