Skip to content

Commit

Permalink
Merge branch 'master' of ssh://deng.git.sourceforge.net/gitroot/deng/…
Browse files Browse the repository at this point in the history
…deng
  • Loading branch information
danij-deng committed Jul 24, 2012
2 parents b019c86 + 9986d9c commit d775172
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 22 deletions.
5 changes: 2 additions & 3 deletions doomsday/libdeng/include/de/str.h
Expand Up @@ -19,13 +19,12 @@
* return value from a function, or when you have strings with a limited scope
* that need to be deleted after exiting the scope.
*
* @todo Rename to Str? (str.h)
* @todo Make this opaque for better forward compatibility -- prevents initialization
* with static C strings, though (which is probably for the better anyway).
* @todo Derive from Qt::QString
*
* @authors Copyright © 2003-2010 Jaakko Keränen <jaakko.keranen@iki.fi>
* @authors Copyright © 2008-2010 Daniel Swanson <danij@dengine.net>
* @authors Copyright © 2003-2012 Jaakko Keränen <jaakko.keranen@iki.fi>
* @authors Copyright © 2008-2012 Daniel Swanson <danij@dengine.net>
*
* @par License
* GPL: http://www.gnu.org/licenses/gpl.html
Expand Down
36 changes: 17 additions & 19 deletions doomsday/libdeng/src/str.c
@@ -1,25 +1,23 @@
/**\file m_string.c
*\section License
* License: GPL
* Online License Link: http://www.gnu.org/licenses/gpl.html
*
*\author Copyright © 2003-2012 Jaakko Keränen <jaakko.keranen@iki.fi>
*\author Copyright © 2006-2012 Daniel Swanson <danij@dengine.net>
/**
* @file str.c
* Dynamic text string. @ingroup base
*
* 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
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* @authors Copyright © 2003-2012 Jaakko Keränen <jaakko.keranen@iki.fi>
* @authors Copyright © 2008-2012 Daniel Swanson <danij@dengine.net>
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* @par License
* GPL: http://www.gnu.org/licenses/gpl.html
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301 USA
* <small>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 the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. This program is distributed in the hope that it
* will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details. You should have received a copy of the GNU
* General Public License along with this program; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA</small>
*/

#include <ctype.h>
Expand Down

0 comments on commit d775172

Please sign in to comment.