update for HEAD-2003091401
[reactos.git] / lib / msvcrt / stdio / popen.c
index 5e0e1e2..96b8be0 100644 (file)
@@ -10,6 +10,9 @@
 #include <msvcrt/msvcrtdbg.h>
 
 
+/*
+ * @implemented
+ */
 FILE *_popen (const char *cm, const char *md) /* program name, pipe mode */
 {
   char *szCmdLine=NULL;
@@ -114,6 +117,9 @@ FILE *_popen (const char *cm, const char *md) /* program name, pipe mode */
 }
 
 
+/*
+ * @implemented
+ */
 int _pclose (FILE *pp)
 {
   fclose(pp);
@@ -123,6 +129,9 @@ int _pclose (FILE *pp)
 }
 
 
+/*
+ * @implemented
+ */
 FILE *_wpopen (const wchar_t *cm, const wchar_t *md) /* program name, pipe mode */
 {
   wchar_t *szCmdLine=NULL;