Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/crypto/krb5/src/util/ss/prompt.c
34907 views
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(int sci_idx, char *new_prompt)
15
{
16
ss_info(sci_idx)->prompt = new_prompt;
17
}
18
19
char *
20
ss_get_prompt(int sci_idx)
21
{
22
return(ss_info(sci_idx)->prompt);
23
}
24
25