Rev 882 | Rev 1612 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 882 | Rev 1264 | ||
|---|---|---|---|
| Line 24... | Line 24... | ||
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | */ |
27 | */ |
| 28 | 28 | ||
| - | 29 | /** |
|
| - | 30 | * @file memstr.c |
|
| - | 31 | * @brief Memory string operations. |
|
| - | 32 | * |
|
| - | 33 | * This file provides architecture independent functions |
|
| - | 34 | * to manipulate blocks of memory. These functions |
|
| - | 35 | * are optimized as much as generic functions of |
|
| - | 36 | * this type can be. However, architectures are |
|
| - | 37 | * free to provide even more optimized versions of these |
|
| - | 38 | * functions. |
|
| - | 39 | */ |
|
| - | 40 | ||
| 29 | #include <memstr.h> |
41 | #include <memstr.h> |
| 30 | #include <arch/types.h> |
42 | #include <arch/types.h> |
| 31 | 43 | ||
| 32 | /** Copy block of memory |
44 | /** Copy block of memory |
| 33 | * |
45 | * |