File: util.cc

package info (click to toggle)
xmms-shell 0.99.3-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 480 kB
  • ctags: 408
  • sloc: cpp: 3,145; sh: 330; makefile: 79; ansic: 39
file content (13 lines) | stat: -rw-r--r-- 150 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "util.h"
#include <sstream>

string int_to_string(int n)
{
    stringstream s;
    string str;

    s << n;
    s >> str;
    return str;
}