blob: 4308af4dddf50a1fbee95046281f5dbd71c0ce40 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#ifndef MELVIX_LIB_H
#define MELVIX_LIB_H
#include <stddef.h>
#include <stdint.h>
#include <multiboot.h>
/**
* Copy n data from src to dest
* @param dest The destination array pointer
* @param src The source array pointer of the data
* @param count The number of bytes to be copied (src)
* @return The modified dest pointer
*/
void *memcpy(void *dest, const void *src, u32 count);
/**
* Replace n bytes of dest by val
* @param dest The destination array pointer
* @param val The replacing chracater
* @param count The number of times val should replace dest entry
* @return The modified dest pointer
*/
void *memset(void *dest, char val, u32 count);
/**
* Compare the first n bytes of a and b
* @param a_ptr The first memory area pointer
* @param b_ptr The second memory area pointer
* @param size The number of bytes to be compared
* @return -1 if a < b, 0 if a = b and 1 if a > b
*/
int memcmp(const void *a_ptr, const void *b_ptr, u32 size);
void memory_info_init(struct multiboot_tag_basic_meminfo *tag);
void memory_mmap_init(struct multiboot_tag_mmap *tag);
void memory_print();
u32 memory_get_all();
#endif
|