Added getdictkeys() prototype.

This commit is contained in:
Guido van Rossum 1990-10-30 13:27:43 +00:00
parent 3ccb6172f8
commit 6990c943a0
1 changed files with 1 additions and 0 deletions

View File

@ -17,3 +17,4 @@ extern int dictinsert PROTO((object *dp, char *key, object *item));
extern int dictremove PROTO((object *dp, char *key));
extern int getdictsize PROTO((object *dp));
extern char *getdictkey PROTO((object *dp, int i));
extern object *getdictkeys PROTO((object *dp));