예제 #1
0
static void as86_filename (char *inname, char *outname, efunc error) {
    char *p;

    if ( (p = strrchr (inname, '.')) != NULL) {
	strncpy (as86_module, inname, p-inname);
	as86_module[p-inname] = '\0';
    } else
	strcpy (as86_module, inname);

    standard_extension (inname, outname, ".o", error);
}
예제 #2
0
파일: outdbg.c 프로젝트: sunank200/ATOM-OS
static void dbg_filename(char *inname, char *outname, efunc error)
{
    standard_extension(inname, outname, ".dbg", error);
}
예제 #3
0
/*
 * filename
 */
static void ieee_filename(char *inname, char *outname)
{
    strcpy(ieee_infile, inname);
    standard_extension(inname, outname, ".o");
}
예제 #4
0
파일: outelf.c 프로젝트: sunank200/ATOM-OS
static void elf_filename(char *inname, char *outname, efunc error)
{
    strcpy(elf_module, inname);
    standard_extension(inname, outname, ".o", error);
}
예제 #5
0
파일: outdbg.c 프로젝트: adintr/nasm_vc2015
static void dbg_filename(char *inname, char *outname)
{
    standard_extension(inname, outname, ".dbg");
}
예제 #6
0
static void coff_win32_filename (char *inname, char *outname, efunc error) 
{
    strcpy(coff_infile, inname);
    standard_extension (inname, outname, ".obj", error);
}