1 /* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */ 2 /* util/ss/prompt.c */ 3 /* 4 * Copyright 1987, 1988 by MIT Student Information Processing Board 5 * 6 * For copyright information, see copyright.h. 7 */ 8 9 #include "copyright.h" 10 #include <stdio.h> 11 #include "ss_internal.h" 12 13 void 14 ss_set_prompt(sci_idx, new_prompt) 15 int sci_idx; 16 char *new_prompt; 17 { 18 ss_info(sci_idx)->prompt = new_prompt; 19 } 20 21 char * 22 ss_get_prompt(sci_idx) 23 int sci_idx; 24 { 25 return(ss_info(sci_idx)->prompt); 26 } 27