Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/GAP/hpcgap/extern/gc/tools/   (Algebra von RWTH Aachen Version 4.15.1©)  Datei vom 18.9.2025 mit Größe 1 kB image not shown  

Quelle  if_not_there.c   Sprache: C

 
/* Conditionally execute the command argv[2] based if the file argv[1]  */
/* does not exist.  If the command is omitted (and the file does not    */
/* exist) then just exit with a non-zero code.                          */

include "private/gc_priv.h"
include <stdio.h>
include <stdlib.h>
include <unistd.h>
#ifdef __DJGPP__
#include <dirent.h>
#endif /* __DJGPP__ */

#ifdef __cplusplus
define EXECV_ARGV_T char**
#else
define EXECV_ARGV_T void/* see the comment in if_mach.c */
#endif

int main(int argc, char **argv)
{
    FILE * f;
#ifdef __DJGPP__
    DIR * d;
#endif /* __DJGPP__ */
    char *fname;

    if (argc < 2 || argc > 3)
        goto Usage;

    fname = TRUSTED_STRING(argv[1]);
    f = fopen(fname, "rb");
    if (f != NULL) {
        fclose(f);
        return(0);
    }
    f = fopen(fname, "r");
    if (f != NULL) {
        fclose(f);
        return(0);
    }
#ifdef __DJGPP__
    if ((d = opendir(fname)) != 0) {
            closedir(d);
            return(0);
    }
#endif
    printf("^^^^Starting command^^^^\n");
    fflush(stdout);
    if (argc == 2)
        return(2); /* the file does not exist but no command is given */

    execvp(TRUSTED_STRING(argv[2]), (EXECV_ARGV_T)(argv + 2));
    exit(1);

Usage:
    fprintf(stderr, "Usage: %s file_name [command]\n", argv[0]);
    return(1);
}

Messung V0.5
C=93 H=100 G=96

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.