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

manucabral/cstrlib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.