#!/bin/ch /* Copyright (c) 2001 by SoftIntegration, Inc. All Rights Reserved */ #include int main() { class CResponse Response; Response.PICS(L"(PICS-1.1 labels on \"1997.01.05T08:15-0500\" until \"1999.12.31T23:59-0000\" ratings (v 0 s 0 l 0 n 0))"); Response.begin(); Response.title(L"Test of Response.PICS"); printf("

Test of Response.PICS


\n"); printf("The header \"pics-label\" which value is \"(PICS-1.1 labels on \"1997.01.05T08:15-0500\" until \"1999.12.31T23:59-0000\" ratings (v 0 s 0 l 0 n 0))\" has been sent to the client.

\n"); Response.end(); }