File: strings.h

package info (click to toggle)
rafkill 1.2.2-3.3
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 13,268 kB
  • sloc: cpp: 13,508; makefile: 64; sh: 14
file content (16 lines) | stat: -rw-r--r-- 338 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _strings_h
#define _strings_h

#include <string>

int numDig( int q );
std::string int2str( int z );
std::string int2normal( int z );
// string d2normal( double whole, int precise );
int str2int( char * convert );
double str2d( char * convert );
int length( char * q );
char upcase( char u );
void upstring( char * who );

#endif