source: branches/reconfiguration/softs/libs/string.h @ 887

Last change on this file since 887 was 850, checked in by cfuguet, 9 years ago

reconf: introducing a softs directory in the reconfiguration branch

  • This softs directory contains a minimalistic (giet-like) library of drivers and some utility functions.
  • Introducing a simple unit test in the vci_cc_vcache_wrapper component to test the newly introduced watchdog timer mechanism. This unit test uses the minimalistic library.
File size: 431 bytes
Line 
1/**
2 * \file    string.h
3 * \date    July 8, 2014
4 * \author  Cesar Fuguet
5 *
6 * \brief   string utility functions
7 */
8#ifndef STRING_H
9#define STRING_H
10
11#include <stdint.h>
12#include <stddef.h>
13
14/**
15 * Set memory region
16 */
17void *memset(void *_dst, int c, size_t len);
18
19/**
20 * Copy memory region
21 */
22void *memcpy(void *_dst, const void *_src, size_t n);
23
24#endif
25
26/*
27 * vim: tabstop=4 : softtabstop=4 : shiftwidth=4 : expandtab
28 */
Note: See TracBrowser for help on using the repository browser.