Last change
on this file was
2,
checked in by oldcode, 24 years ago
|
Initial revision
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
384 bytes
|
Line | |
---|
1 | #include <stdio.h> |
---|
2 | #include <stdlib.h> |
---|
3 | #include <string.h> |
---|
4 | #include "help.hxx" |
---|
5 | |
---|
6 | char *Vglstr = {"ABCDEFGHIJKLMNOPQRSTUVWXYZ\0"}; |
---|
7 | |
---|
8 | int GBS_read_hash(long dummy, char *suchstr) |
---|
9 | { |
---|
10 | char *cp; |
---|
11 | |
---|
12 | dummy = dummy; |
---|
13 | cp = strpbrk(Vglstr, suchstr); |
---|
14 | return (int)cp - (int)Vglstr; |
---|
15 | } |
---|
16 | |
---|
17 | long GBS_create_hash(int nc) |
---|
18 | { |
---|
19 | nc=nc; |
---|
20 | return NULL; |
---|
21 | } |
---|
22 | |
---|
23 | void GBS_write_hash(long ptr, STR names, int idx) |
---|
24 | { |
---|
25 | ; |
---|
26 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.