Skip to content

Instantly share code, notes, and snippets.

View lostsh's full-sized avatar
💾
Probably coding ...

Yohann Vernhes lostsh

💾
Probably coding ...
View GitHub Profile
@lostsh
lostsh / cow.c
Last active May 10, 2024 13:25
[ARCHIVED] Cowsay in C99/C17
#include <stdlib.h>
#include <stdio.h>
void showCow(int);
void showMessage(int, char**);
int length(char*);
int main(int argc, char **argv){
if(argc == 1){