blob: 36aba776c3a6caecadb2a7251a08e08b431dd68a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* fcgi_SC.h - Generic fcgi handler, coz the others all suck.
*
* Copyright 2020 David Seikel <onefang@sledjhamr.org>
*/
// I use camelCaseNames internally, instead of underscore_names as is preferred
// in the rest of toybox. A small limit of 80 characters per source line infers
// shorter names should be used. CamelCaseNames are shorter. Externally visible
// stuff is underscore_names as usual. Plus, I'm used to camelCaseNames, my
// fingers twitch that way.
#include "toys.h"
#include "fcgi_SC.h"
|