NEW FILE HEADER / COPYRIGHT FORMAT
[senf.git] / Utils / hexdump.hh
index 9001097..3b7825b 100644 (file)
@@ -1,9 +1,9 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
-// Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
-//     Stefan Bund <stefan.bund@fokus.fraunhofer.de>
+// Fraunhofer Institute for Open Communication Systems (FOKUS) 
+// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+//     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
 // it under the terms of the GNU General Public License as published by
 
 namespace senf {
 
-    /** \brief write the contents from Iterator i to i_end to the output stream in hexadecimal format.
+    /** \brief Write range [ i, i_end ) to output stream in hexadecimal format
      */
     template <class Iterator>
-    void hexdump(Iterator i, Iterator const & i_end, std::ostream& stream, unsigned block_size=16);
+    void hexdump(Iterator i, Iterator i_end, std::ostream & stream, unsigned block_size=16);
 }
 
 ///////////////////////////////hh.e////////////////////////////////////////