Skip to content

Instantly share code, notes, and snippets.

View l0rd's full-sized avatar
👋

Mario Loriedo l0rd

👋
  • Red Hat
  • Paris, France
View GitHub Profile
@l0rd
l0rd / reversing.c
Created April 19, 2012 23:17
Small C file to reverse file's lines
#include <stdio.h>
#define MAX_SIZE 100
/**
* Recursive function that print
* file lines in reverse order
**/
void reverse_print(FILE* fp) {
char line[MAX_SIZE];
if( fgets(line, MAX_SIZE, fp) == NULL )