Easy C is c library base on CMake, and it contains many of functions and data types to make your code easy, fast and standard. You can simply use it in your project with CMake.
- Have a cleaner code
- Make things easier
- Do things standard
- Faster and better app
- First clone library to your project
- Second Add Library to your
CMakeLists.txt
# if you are using sub directories
# add_subdirectory(lib/easyc)
# add library to your project
# put your project name instead of *main*
target_link_libraries(main PRIVATE easyc)
Name | Type | Description | Args |
---|---|---|---|
string | data type | Replacement for characters | |
getString | function | Get a string input from the system | string q |
getInt | function | Get a string input from the system | string q |
getDouble | function | Get a double input from the system | string q |
getFloat | function | Get a float input from the system | string q |
getChar | function | Get a char input from the system | string q |
getLong | function | Get a long input from the system | string q |
function | print string without \n | string text | |
println | function | print string with \n | string text |
intToString | function | convert int to string | int number |
copyToString | function | copy string to new string and return it | string text |
uppercaseChar | function | make character uppercase | char c |
uppercaseString | function | make string uppercase | string text |