Quizzer

 view release on metacpan or  search on metacpan

exercises/compile-tcsh/tcsh-6.10.00/ed.chared.c  view on Meta::CPAN

    if (patlen == 0) return(CC_ERROR);
    return(v_repeat_srch(searchdir == F_UP_SEARCH_HIST ? 
			 F_DOWN_SEARCH_HIST : F_UP_SEARCH_HIST));
}

#ifndef WINNT_NATIVE
/* Since ed.defns.h  is generated from ed.defns.c, these empty 
   functions will keep the F_NUM_FNS consistent
 */
CCRETVAL
e_copy_to_clipboard(c)
    int c;
{
    USE(c);
    return CC_ERROR;
}

CCRETVAL
e_paste_from_clipboard(c)
    int c;
{
    USE(c);
    return (CC_ERROR);
}

CCRETVAL
e_dosify_next(c)
    int c;
{

exercises/compile-tcsh/tcsh-6.10.00/ed.decls.h  view on Meta::CPAN

extern  CCRETVAL        v_charto_fwd		__P((int));
extern  CCRETVAL        v_charto_back		__P((int));
extern  CCRETVAL        e_normalize_path	__P((int));
extern  CCRETVAL        e_normalize_command	__P((int));
extern  CCRETVAL        e_stuff_char		__P((int));
extern  CCRETVAL        e_list_all		__P((int));
extern  CCRETVAL        e_complete_all		__P((int));
extern  CCRETVAL        e_complete_fwd		__P((int));
extern  CCRETVAL        e_complete_back		__P((int));
extern  CCRETVAL        e_dabbrev_expand	__P((int));
extern  CCRETVAL	e_copy_to_clipboard	__P((int));
extern  CCRETVAL	e_paste_from_clipboard	__P((int));
extern  CCRETVAL	e_dosify_next		__P((int));
extern  CCRETVAL	e_dosify_prev		__P((int));
extern  CCRETVAL	e_page_up			__P((int));
extern  CCRETVAL	e_page_down			__P((int));

/*
 * ed.inputl.c
 */
extern	int	Inputl			__P((void));
extern	int	GetNextChar		__P((Char *));

exercises/compile-tcsh/tcsh-6.10.00/ed.defns.c  view on Meta::CPAN

    e_complete_fwd,
#define		F_COMPLETE_FWD	108
    e_complete_back,
#define		F_COMPLETE_BACK	109
    e_delnext_list,
#define		F_DELNEXT_LIST	110
    e_normalize_command,
#define		F_COMMAND_NORM	111
    e_dabbrev_expand,
#define		F_DABBREV_EXPAND	112
	e_copy_to_clipboard,
#define		F_COPY_CLIP		113
	e_paste_from_clipboard,
#define		F_PASTE_CLIP	114
	e_dosify_next,
#define		F_DOSIFY_NEXT	115
	e_dosify_prev,
#define		F_DOSIFY_PREV	116
	e_page_up,
#define		F_PAGE_UP		117
	e_page_down,
#define		F_PAGE_DOWN		118
    0				/* DUMMY VALUE */

exercises/compile-tcsh/tcsh-6.10.00/ed.defns.c  view on Meta::CPAN

    f->name = "which-command";
    f->func = F_WHICH;
    f->desc = CSAVS(3, 113, "Perform which of current command");

    f++;
    f->name = "yank";
    f->func = F_YANK_KILL;
    f->desc = CSAVS(3, 114, "Paste cut buffer at cursor position");

    f++;
    f->name = "e_copy_to_clipboard";
    f->func = F_COPY_CLIP;
    f->desc = CSAVS(3, 115, "(win32 only)Copy cut buffer to system clipboard");
    f++;
    f->name = "e_paste_from_clipboard";
    f->func = F_PASTE_CLIP;
    f->desc = CSAVS(3, 116, "(win32 only)Paste clipboard buffer at cursor position");
    f++;
    f->name = "e_dosify_next";
    f->func = F_DOSIFY_NEXT;
    f->desc = CSAVS(3, 117, "(win32 only)Convert each '/' in next word to '\\\\'");
    f++;
    f->name = "e_dosify_prev";
    f->func = F_DOSIFY_PREV;
    f->desc = CSAVS(3, 118, "(win32 only)Convert each '/' in previous word to '\\\\'");
    f++;
    f->name = "e_page_up";



( run in 2.376 seconds using v1.01-cache-2.11-cpan-2398b32b56e )