1 /*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Permission is hereby granted, free of charge, to any person
5 * obtaining a copy of this software and associated documentation
6 * files (the "Software"), to deal in the Software without
7 * restriction, including without limitation the rights to use, copy,
8 * modify, merge, publish, distribute, sublicense, and/or sell copies
9 * of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be
13 * included in all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24
25 #include <endian.h>
26 #include <stdarg.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30
31 #include "avb_sysdeps.h"
32
avb_memcmp(const void * src1,const void * src2,size_t n)33 int avb_memcmp(const void* src1, const void* src2, size_t n) {
34 return memcmp(src1, src2, n);
35 }
36
avb_memcpy(void * dest,const void * src,size_t n)37 void* avb_memcpy(void* dest, const void* src, size_t n) {
38 return memcpy(dest, src, n);
39 }
40
avb_memset(void * dest,const int c,size_t n)41 void* avb_memset(void* dest, const int c, size_t n) {
42 return memset(dest, c, n);
43 }
44
avb_strcmp(const char * s1,const char * s2)45 int avb_strcmp(const char* s1, const char* s2) {
46 return strcmp(s1, s2);
47 }
48
avb_strncmp(const char * s1,const char * s2,size_t n)49 int avb_strncmp(const char* s1, const char* s2, size_t n) {
50 return strncmp(s1, s2, n);
51 }
52
avb_strlen(const char * str)53 size_t avb_strlen(const char* str) {
54 return strlen(str);
55 }
56
avb_abort(void)57 void avb_abort(void) {
58 abort();
59 }
60
avb_print(const char * message)61 void avb_print(const char* message) {
62 fprintf(stderr, "%s", message);
63 }
64
avb_printv(const char * message,...)65 void avb_printv(const char* message, ...) {
66 va_list ap;
67 const char* m;
68
69 va_start(ap, message);
70 for (m = message; m != NULL; m = va_arg(ap, const char*)) {
71 fprintf(stderr, "%s", m);
72 }
73 va_end(ap);
74 }
75
avb_malloc_(size_t size)76 void* avb_malloc_(size_t size) {
77 return malloc(size);
78 }
79
avb_free(void * ptr)80 void avb_free(void* ptr) {
81 free(ptr);
82 }
83
avb_div_by_10(uint64_t * dividend)84 uint32_t avb_div_by_10(uint64_t* dividend) {
85 uint32_t rem = (uint32_t)(*dividend % 10);
86 *dividend /= 10;
87 return rem;
88 }
89