1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2025-09-18 22:58:55 -04:00

Rename Multiboot2 info helper funcs

This commit is contained in:
Alex Kotov 2022-01-13 08:25:09 +05:00
parent 994fca4c6a
commit d22349cc75
5 changed files with 8 additions and 8 deletions

2
.gitignore vendored
View file

@ -47,7 +47,7 @@
/tests/test_cmdline /tests/test_cmdline
/tests/test_elf /tests/test_elf
/tests/test_itoa /tests/test_itoa
/tests/test_multiboot2_helpers /tests/test_multiboot2_info_helpers
/tests/test_multiboot2_info_print /tests/test_multiboot2_info_print
/tests/test_multiboot2_info_validation /tests/test_multiboot2_info_validation
/tests/test_pfa /tests/test_pfa

View file

@ -56,11 +56,11 @@ endif
if WITH_MULTIBOOT2 if WITH_MULTIBOOT2
libkernaux_a_SOURCES += \ libkernaux_a_SOURCES += \
src/multiboot2/helpers.c \ src/multiboot2/info_helpers.c \
src/multiboot2/info_is_valid.c \ src/multiboot2/info_is_valid.c \
src/multiboot2/info_print.c src/multiboot2/info_print.c
TESTS += \ TESTS += \
tests/test_multiboot2_helpers \ tests/test_multiboot2_info_helpers \
tests/test_multiboot2_info_print \ tests/test_multiboot2_info_print \
tests/test_multiboot2_info_validation tests/test_multiboot2_info_validation
noinst_PROGRAMS += \ noinst_PROGRAMS += \
@ -133,9 +133,9 @@ tests_test_itoa_SOURCES = \
$(libkernaux_a_SOURCES) \ $(libkernaux_a_SOURCES) \
tests/test_itoa.c tests/test_itoa.c
tests_test_multiboot2_helpers_SOURCES = \ tests_test_multiboot2_info_helpers_SOURCES = \
$(libkernaux_a_SOURCES) \ $(libkernaux_a_SOURCES) \
tests/test_multiboot2_helpers.c \ tests/test_multiboot2_info_helpers.c \
tests/multiboot2_example1.h \ tests/multiboot2_example1.h \
tests/multiboot2_example2.h tests/multiboot2_example2.h

View file

@ -316,9 +316,9 @@ struct KernAux_Multiboot2_ITag_MemoryMap_EntryBase {
} }
__attribute__((packed)); __attribute__((packed));
/******************** /********************************
* Helper functions * * Information helper functions *
********************/ ********************************/
const struct KernAux_Multiboot2_ITagBase const struct KernAux_Multiboot2_ITagBase
*KernAux_Multiboot2_first_tag_with_type( *KernAux_Multiboot2_first_tag_with_type(