Changeset dc5c303 in mainline for kernel/generic/include/memw.h
- Timestamp:
- 2023-12-28T13:59:23Z (2 years ago)
- Children:
- 6b66de6b
- Parents:
- 42c2e65 (diff), f87ff8e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - git-author:
- boba-buba <120932204+boba-buba@…> (2023-12-28 13:59:23)
- git-committer:
- GitHub <noreply@…> (2023-12-28 13:59:23)
- File:
-
- 1 moved
-
kernel/generic/include/memw.h (moved) (moved from kernel/generic/include/gsort.h ) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/memw.h
r42c2e65 rdc5c303 1 1 /* 2 * Copyright (c) 200 5 Sergey Bondari2 * Copyright (c) 2001-2004 Jakub Jermar 3 3 * All rights reserved. 4 4 * … … 33 33 */ 34 34 35 #ifndef KERN_ GSORT_H_36 #define KERN_ GSORT_H_35 #ifndef KERN_MEM_H_ 36 #define KERN_MEM_H_ 37 37 38 #include <stdbool.h>39 38 #include <stddef.h> 39 #include <stdint.h> 40 40 41 typedef int (*sort_cmp_t)(void *, void *, void *); 41 #include <mem.h> 42 42 43 extern bool gsort(void *, size_t, size_t, sort_cmp_t, void *); 43 extern void memsetb(void *, size_t, uint8_t) 44 __attribute__((nonnull(1))); 45 extern void memsetw(void *, size_t, uint16_t) 46 __attribute__((nonnull(1))); 44 47 45 48 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
