blob: b88a3f112e0eac708073be2d86960f5ad295c38f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#-h- putbak 254 local 12/01/80 15:54:34
# putbak - push character back onto input
include defs
subroutine putbak (c)
character c
include COMMON_BLOCKS
if (bp <= 1)
call baderr ("too many characters pushed back.")
else {
bp = bp - 1
buf (bp) = c
}
return
end
|