SINTEF / dlite

DLite - a lightweight data-centric framework for semantic interoperability
https://SINTEF.github.io/dlite
MIT License
29 stars 6 forks source link

More semantic naming of plugin_path_delete() and similar functions #128

Closed jesper-friis closed 2 years ago

jesper-friis commented 3 years ago

Rename:

int plugin_path_delete(PluginInfo *info, int n)  -->  int plugin_path_delete_index(PluginInfo *info, int index)  

int plugin_path_remove(PluginInfo *info, const char *path) --> int plugin_path_delete(PluginInfo *info, const char *path)

Similar changes should be done in the following files:

Hridoy-31 commented 3 years ago

Hello @jesper-friis, can I work on this issue ? Thanks in advance. Have a good day !

jesper-friis commented 3 years ago

Of cause. You are very welcome to do that

Hridoy-31 commented 3 years ago

Hello @jesper-friis, in which functions I have to do semantic naming in src/dlite-mapping.c file ? Can you please guide me through ? Have a nice day !

jesper-friis commented 3 years ago

You are right, there are no functions that should be renamed in src/dlite-mapping.c.

jesper-friis commented 2 years ago

Fixed