utils.cpp

00001 
00002 #include "utils.h"
00003 
00004 namespace xfltk {
00005         
00006 namespace utils {
00007 
00008 char* strcopy(const char* src) {
00009         int len = std::strlen(src) + 1;
00010         char* dst = new char[len];
00011         std::copy(src, src + len, dst);
00012         return dst;
00013 }
00014 
00015 };      //namespace utils
00016 
00017 };      //namespace xfltk

Generated on Tue Jan 3 14:32:36 2006 for xfltk by  doxygen 1.4.6-NO