Skip to content
This repository has been archived by the owner on Sep 26, 2022. It is now read-only.

Latest commit

 

History

History
12 lines (10 loc) · 888 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 888 Bytes

cstrlib

A simple string library for C.

Functions

  • cstrlen - Get the length of a string, example here.
  • cstrget - Get a char from a specific position, example here.
  • cstrgetf - Get the first char of a string.
  • cstrcmp - Compare if two strings are equals, example here.
  • cstrcpy - Copy a string to another string, example here.
  • cstrempty - Checks if a string is empty, example here.
  • cstrcr - Replaces a char for another char, example here.