Is there an API/way to know what Linux Kernel headers replace what user space headers for instance: linux/string.h
instead of string.h
?
All I found was this website:The Linux Kernal API but it didn't say what headers to include in my code in order to use the functions listed.
Asked
Active
Viewed 815 times
0

Daniel Meltzer
- 349
- 1
- 3
- 10
-
1`string.h` is called a "header file". It definitely is not a library. You might like to [read here on this](https://stackoverflow.com/questions/924485/whats-the-difference-between-a-header-file-and-a-library). – alk May 19 '18 at 17:12
1 Answers
0
while no API found, a good way for me is to use :
Documentation
and the following guide:
Kernel Guide

Daniel Meltzer
- 349
- 1
- 3
- 10