ansilove

ANSI and ASCII art to PNG converter in C
Log | Files | Refs | README | LICENSE

commit 75ab4ad9fe7888eff149e76d1046c4474ac81140
parent 5c0941a5caf4d088eac2b25e2f545cc526281ed3
Author: ByteProject <stefan.vogt@byteproject.net>
Date:   Fri, 23 Dec 2011 23:14:05 +0100

fuck this header crap, we're not doing Cocoa!

Diffstat:
Dansilove/strtolower.h | 21---------------------
Dansilove/substr.h | 22----------------------
2 files changed, 0 insertions(+), 43 deletions(-)

diff --git a/ansilove/strtolower.h b/ansilove/strtolower.h @@ -1,21 +0,0 @@ -// -// strtolower.h -// AnsiLove/C -// -// Copyright (c) 2011, Stefan Vogt. All rights reserved. -// http://byteproject.net -// -// Use of this source code is governed by a MIT-style license. -// See the file LICENSE for details. -// - -#if defined(__APPLE__) && defined(__MACH__) -#import <Foundation/Foundation.h> -#else -#include <stdio.h> -#include <ctype.h> -#endif - -// In-place modification of a string to be all lower case. - -void strtolower(char str[]); diff --git a/ansilove/substr.h b/ansilove/substr.h @@ -1,22 +0,0 @@ -// -// substr.h -// AnsiLove/C -// -// Copyright (c) 2011, Stefan Vogt. All rights reserved. -// http://byteproject.net -// -// Use of this source code is governed by a MIT-style license. -// See the file LICENSE for details. -// - -#if defined(__APPLE__) && defined(__MACH__) -#import <Foundation/Foundation.h> -#else -#include <stdio.h> -#include <stdlib.h> -#include <string.h> -#endif - -// Returns the portion of a string specified by start and length parameters. - -char *substr(const char *str, size_t begin, size_t len);