Annotation of freem/src/libfill.h, revision 1.3

1.1       snw         1: /*
1.3     ! snw         2:  *   $Id$
1.1       snw         3:  *    Provides correct definitions of standard library
                      4:  *    functions to get around compiler warnings until 
                      5:  *    we can move to using the standard headers.
                      6:  *
                      7:  *  
1.2       snw         8:  *   Author: Serena Willis <snw@coherent-logic.com>
1.1       snw         9:  *    Copyright (C) 1998 MUG Deutschland
1.3     ! snw        10:  *    Copyright (C) 2020, 2025 Coherent Logic Development LLC
1.1       snw        11:  *
                     12:  *
                     13:  *   This file is part of FreeM.
                     14:  *
                     15:  *   FreeM is free software: you can redistribute it and/or modify
                     16:  *   it under the terms of the GNU Affero Public License as published by
                     17:  *   the Free Software Foundation, either version 3 of the License, or
                     18:  *   (at your option) any later version.
                     19:  *
                     20:  *   FreeM is distributed in the hope that it will be useful,
                     21:  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
                     22:  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     23:  *   GNU Affero Public License for more details.
                     24:  *
                     25:  *   You should have received a copy of the GNU Affero Public License
                     26:  *   along with FreeM.  If not, see <https://www.gnu.org/licenses/>.
                     27:  *
1.3     ! snw        28:  *   $Log$
        !            29:  *
        !            30:  * SPDX-FileCopyrightText:  (C) 2025 Coherent Logic Development LLC
        !            31:  * SPDX-License-Identifier: AGPL-3.0-or-later
1.1       snw        32:  **/
                     33: 
                     34: #ifndef _LIBFILL_H
                     35: # define _LIBFILL_H
                     36: 
                     37: void exit(int status);
                     38: char *strcat(char *dest, const char *src);
                     39: 
                     40: //FILE *popen(const char *command, const char *type);
                     41: char *strcpy(char *dest, const char *src);
                     42: char *strchr(const char *s, int c);
                     43: char *strncpy(char *dest, const char *src, size_t n);
                     44: unsigned int sleep(unsigned int seconds);
                     45: void free(void *ptr);
                     46: size_t strlen(const char *s);
                     47: int strncmp(const char *s1, const char *s2, size_t n);
                     48: char *strtok(char *str, const char *delim);
                     49: void *calloc(size_t nmemb, size_t size);
                     50: void *malloc(size_t size);
                     51: char *strncat(char *dest, const char *src, size_t n);
                     52: 
1.3     ! snw        53: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>