DCPLib
DCPLib copied to clipboard
Make header-defined function inlined
The ipToString() function is defined in its header file, which causes multiple declaration errors if the header is included by multiple source files. Making it inline solves this.
The alternative solution would be to move the definition to a source file.