Force include lib/ files with full path (#9387)

* Force include lib/ files with full path

This is auto generated by using following commands:
  for i in support core asn1 mdns shell; do git sed "#include \"$i/\\(.*\\)\"\$" "#include <lib/$i/\\1>" ; done
  for i in support core asn1 mdns shell; do git sed "#include <$i/\\(.*\\)>\$" "#include <lib/$i/\\1>" ; done

Note: git-sed is in the git-extras package

* Restyle

* Manual fixes
diff --git a/src/inet/EndPointBasis.h b/src/inet/EndPointBasis.h
index 3f4e3b9..0f8a414 100644
--- a/src/inet/EndPointBasis.h
+++ b/src/inet/EndPointBasis.h
@@ -32,7 +32,7 @@
 #include <inet/InetInterface.h>
 #include <inet/InetLayerEvents.h>
 
-#include <support/DLLUtil.h>
+#include <lib/support/DLLUtil.h>
 
 #if CHIP_SYSTEM_CONFIG_USE_SOCKETS
 #include <system/SocketEvents.h>