# libfins **Repository Path**: doiob/libfins ## Basic Information - **Project Name**: libfins - **Description**: No description available - **Primary Language**: Unknown - **License**: LGPL-2.1 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-03-05 - **Last Updated**: 2026-03-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # libfins Library implementing FINS protocol over TCP Compiling ======= Use qmake to compile the library. Create a build directory: ``` mkdir build cd build ``` and run: ``` qmake ../src/fins.pro make ``` Using ======= See example.c for usage. Compile example like this: ``` cd build gcc -c -I ../src ../example.c gcc -o example example.o -lfins -L. ```