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
Created October 22, 2021 13:23
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){