Giter VIP home page Giter VIP logo

libfree's People

Contributors

edmundkorley avatar

Stargazers

 avatar

Watchers

 avatar

libfree's Issues

Stream functions

Implement a set of functions that output different data types to different streams. Optimize order we implement these.

  • putchar ๐ŸŒฑ
  • putstr ๐ŸŒฑ
  • putendl ๐ŸŒฑ
  • putnbr ๐ŸŒฑ
  • putchar_fd ๐ŸŒฑ
  • putstr_fd ๐ŸŒฑ
  • putendl_fd ๐ŸŒฑ
  • putnbr_fd ๐ŸŒฑ

๐ŸŒฑ - not available or exposed by the C standard library.

String functions

Implement a set of functions that manipulate strings (of char * type). Optimize the order in which we will implement these.

  • strlen
  • toupper
  • tolower
  • atoi
  • itoa ๐ŸŒฑ
  • isalpha
  • isdigit
  • isalnum
  • isascii
  • isprint
  • strdup
  • strcpy
  • strncpy
  • strcat
  • strncat
  • strlcat
  • strchr
  • strrchr
  • strstr
  • strnstr
  • strcmp
  • strncmp
  • strnew ๐ŸŒฑ
  • strdel ๐ŸŒฑ
  • strclr ๐ŸŒฑ
  • striter ๐ŸŒฑ
  • striteri ๐ŸŒฑ
  • strmap ๐ŸŒฑ
  • strmapi ๐ŸŒฑ
  • strequ ๐ŸŒฑ
  • strnequ ๐ŸŒฑ
  • strsub ๐ŸŒฑ
  • strjoin ๐ŸŒฑ
  • strtrim๐ŸŒฑ
  • strsplit๐ŸŒฑ
  • strsplit_list (a version of strsplit that returns a t_list * instead of an char **) ๐ŸŒฑ ๐ŸŒŸ

๐ŸŒฑ - not available or exposed by the C standard library.
๐ŸŒŸ - non-mandatory, "bonus".

Memory functions

Implement a group of functions that manipulate raw memory. We should optimize the order in which we are going to write these.

  • memset
  • bzero
  • memcpy
  • memccpy
  • memmove
  • memchr
  • memrchr ๐ŸŒŸ
  • memcmp
  • memalloc ๐ŸŒฑ
  • memdel ๐ŸŒฑ

๐ŸŒŸ - non-mandatory, "bonus".
๐ŸŒฑ - not available or exposed by the C standard library.

List functions

Implement a set of functions to manipulate linked lists. Optimize the order we implement these. Here is the relevant struct for a linked-list node:

typedef struct        s_list
{
    void              *content;
    size_t            content_size;
    struct s_list     *next;
}                     t_list;
  • lstnew ๐ŸŒฑ ๐ŸŒŸ
  • lstdelone ๐ŸŒฑ ๐ŸŒŸ
  • lstdel ๐ŸŒฑ ๐ŸŒŸ
  • lstadd ๐ŸŒฑ ๐ŸŒŸ
  • lstiter ๐ŸŒฑ ๐ŸŒŸ
  • lstmap ๐ŸŒฑ ๐ŸŒŸ
  • lstfold (like reduce in functional paradigms) ๐ŸŒฑ ๐ŸŒŸ

๐ŸŒฑ - not available or exposed by the C standard library.
๐ŸŒŸ - non-mandatory, "bonus".

Run norminette on everything

  • Make sure norminette IS WORKING on the workstation you are at - write a few test files to run it on to check
  • Run norminette on everything before submitting

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.