Annotation of capa/capa51/pProj/capalogineditor.c, revision 1.3
1.2 albertel 1: /* broken beginning to reimplement the capalogin editor
2: Copyright (C) 1992-2000 Michigan State University
3:
4: The CAPA system is free software; you can redistribute it and/or
5: modify it under the terms of the GNU Library General Public License as
6: published by the Free Software Foundation; either version 2 of the
7: License, or (at your option) any later version.
8:
9: The CAPA system is distributed in the hope that it will be useful,
10: but WITHOUT ANY WARRANTY; without even the implied warranty of
11: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12: Library General Public License for more details.
13:
14: You should have received a copy of the GNU Library General Public
15: License along with the CAPA system; see the file COPYING. If not,
16: write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
1.3 ! albertel 17: Boston, MA 02111-1307, USA.
! 18:
! 19: As a special exception, you have permission to link this program
! 20: with the TtH/TtM library and distribute executables, as long as you
! 21: follow the requirements of the GNU GPL in regard to all of the
! 22: software in the executable aside from TtH/TtM.
! 23: */
1.2 albertel 24:
1.1 albertel 25: /* gather subjective answers from student */
26:
27: #define BS 8
28: #define DEL 127
29: #define ESC 27
30:
31: #define COLON 58
32:
33: #define EDIT_HEIGHT 21
34: #define EDIT_WIDTH 80
35:
36: void init_editor(char*** sbuf_pp)
37: {
38: int ww=EDIT_WIDTH, hh=EDIT_HEIGHT,i;
39: *sbuf_pp = (char **)capa_malloc(sizeof(char *),hh);
40: for(i=0;i<hh;i++) {
41: *sbuf_pp[i] = (char *)capa_malloc(sizeof(char)*ww+1,1);
42: }
43: }
44:
45: int handle_keystrokes_editor(char** sbuf_pp)
46: {
47: }
48:
49: int editor(char*** sbuf_pp)
50: {
51: init_editor(sbuf_pp);
52: return handle_keystrokes_editor(*sbuf_pp);
53: }
54:
55: void
56: answer_subjective(student_number,set,section,prob)
57: char *student_number;
58: int set;
59: int *section;
60: int prob;
61: {
62: char **sbuf_pp;
63:
64: if (editor(&sbuf_pp)) {
65: /*turn sbuf_pp into one string and store subjective*/
66: }
67: }
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>