DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦1e4a81687⟧ TextFile

    Length: 312 (0x138)
    Types: TextFile
    Names: »glob.c«

Derivation

└─⟦4f9d7c866⟧ Bits:30007245 EUUGD6: Sikkerheds distributionen
    └─⟦b5330643c⟧ »./cops/perl-4.019/perl.tar.Z« 
        └─⟦2b9a58213⟧ 
            └─⟦this⟧ »perl-4.019/os2/glob.c« 

TextFile

/*
 * Globbing for OS/2.  Relies on the expansion done by the library
 * startup code. (dds)
 */

#include <stdio.h>
#include <string.h>

main(int argc, char *argv[])
{
  register i;

  for (i = 1; i < argc; i++)
  {
    fputs(IsFileSystemFAT(argv[i]) ? strlwr(argv[i]) : argv[i], stdout);
    putchar(0);
  }
}