NetworkManager/src/libnm-core-aux-intern
Thomas Haller f786b05479
glib-aux: swap arguments for nm_array_find_bsearch()
Have "len" before "elem_size". That is consistent with g_qsort_with_data()
and bsearch(), and is also what I would expect.

Note that the previous commit just renamed the function. If a user
of the new, changed API gets backported to an older branch, we will
get a compilation error and note that the arguments need to be adjusted.
2022-09-28 13:30:44 +02:00
..
meson.build build/meson: cleanup dependencies for libnm-core-aux-intern 2021-02-28 10:42:05 +01:00
nm-auth-subject.c format: reformat source tree with clang-format 13.0 2021-11-29 09:31:09 +00:00
nm-auth-subject.h build: move "libnm-core/" to "src/" and split it 2021-02-18 19:46:51 +01:00
nm-common-macros.h build: move "libnm-core/" to "src/" and split it 2021-02-18 19:46:51 +01:00
nm-libnm-core-utils.c glib-aux: swap arguments for nm_array_find_bsearch() 2022-09-28 13:30:44 +02:00
nm-libnm-core-utils.h mptcp: rework "connection.mptcp-flags" for enabling MPTCP 2022-08-25 23:12:53 +02:00
README.md build: move "libnm-core/" to "src/" and split it 2021-02-18 19:46:51 +01:00

libnm-core-aux-intern

libnm-core-aux-intern is a static library that:

Basically, it is a static library with utility functions that extends libnm-core-impl (the part that is public API of libnm), but it is also used by libnm-core-impl itself.

That means:

Note that libnm-core-aux-intern only uses public API of libnm.

This directory should not be added to the include search path. Instead, users should fully qualify the include like #include "libnm-core-aux-intern/nm-auth-subject.h".