package Test_Problems is

    procedure Count_All_Characters (In_Object : String);
    -- prints the number of time a character appears in the
    -- specified object
    --

    procedure Count_All_Comments (In_Object : String);
    -- prints the number of comments in the specified object;
    --

    procedure Display (Object_Name : String);

    -- simple prints the object's image;
    --

    procedure Display_Unindented (Object_Name : String);

    -- prints an object's image with all indentation removed
    --

end Test_Problems;