0

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.

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 Answers1

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