[nnfw-api] rename api related files (#7895)
- nnfw_dev.cc is renamed to nnfw_api.cc.
- nnfw_dev.cc looks like the implementation for `nnfw_dev.h`. (i.e. APIs for developers like custom op)
- However, it is a binding from C APIs to C++ implementation for WHOLE APIs.
- nnfw_api.cc and nnfw_api.hpp are C++ implementation.
- nnfw_api.cc is already used for a binding implementation the above.
- Thus, they are renamed to nnfw_api_internal.*.
- nnfw_api.hpp is renamed to nnfw_api_internal.h.
- It was the only file that uses the suffix `*.hpp`.
- wrapper directory is removed to make structure simple.
Signed-off-by: Sanggyu Lee <sg5.lee@samsung.com>