cmake_tutorial/libs/lib1/inc/lib1.h
2025-07-03 17:29:32 +02:00

6 lines
217 B
C

#pragma once
// No need to include lib2.h or lib3.h here unless their types/functions
// are part of lib1.h's public interface. For simple calls in lib1.c,
// including in lib1.c is sufficient.
void lib1_function();