Skip to content

Commit

Permalink
more comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan Dipert committed Dec 25, 2008
1 parent 3ea6afe commit 4d7d8cf
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
5 changes: 5 additions & 0 deletions error.c
@@ -1,3 +1,8 @@
/*
* Functions for printing HTTP error
* codes and error messages.
*/

#ifdef USE_FASTCGI
#include <fcgi_stdio.h>
#else
Expand Down
6 changes: 6 additions & 0 deletions fetch.c
@@ -1,3 +1,9 @@
/*
* Use the CURL api to POST
* to a remote URL and print
* the returned data.
*/

#ifdef USE_FASTCGI
#include <fcgi_stdio.h>
#else
Expand Down
6 changes: 6 additions & 0 deletions request.c
@@ -1,3 +1,9 @@
/*
* Handle the creation, population,
* and clean destruction of the
* extRequest struct.
*/

#ifdef USE_FASTCGI
#include <fcgi_stdio.h>
#else
Expand Down

0 comments on commit 4d7d8cf

Please sign in to comment.