-[11] Rewrite utmp/wtmp functions to use database functions. This is much
- better than the normal flat file format.
+[13] Several more or less small functions have to be written:
+
+ + tcgetid() and waitid() from XPG4.2
+ + grantpt(), ptsname(), unlockpt() from XPG4.2
+
+ More information is available on request.
+
+
+[14] We need to write a library for on-the-fly transformation of streams
+ of text. In fact, this would be a recode-library (you know, GNU recode).
+ This is needed in several places in the GNU libc and I already have
+ rather concrete plans but so far no possibility to start this.
+
+
+[15] Cleaning up the header files. Ideally, each header style should
+ follow the "good examples". Each variable and function should have
+ a short description of the function and its parameters. The prototypes
+ should always contain variable names which can help to identify their
+ meaning; better than
+
+ int foo __P ((int, int, int, int));