1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
// --------------------------------------------------------
// krstring.h
// --------------------------------------------------------
// Copyright (c) 2002, Kronoman
// En memoria de mi querido padre
// --------------------------------------------------------
// Funciones para strings ASCIIZ auxiliares
// --------------------------------------------------------
// ASCIIZ string function
// --------------------------------------------------------
#ifndef KRSTRING_H
#define KRSTRING_H
char *krtrim(char *dest, const char *orig);
#endif
|