~ubuntu-branches/ubuntu/trusty/modem-manager-gui/trusty-backports

« back to all changes in this revision

Viewing changes to src/strformat.h

  • Committer: Package Import Robot
  • Author(s): Graham Inggs
  • Date: 2013-07-30 12:51:59 UTC
  • Revision ID: package-import@ubuntu.com-20130730125159-flzv882fhuzhmfmi
Tags: upstream-0.0.16
ImportĀ upstreamĀ versionĀ 0.0.16

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *      strformat.h
 
3
 *      
 
4
 *      Copyright 2013 Alex <alex@linuxonly.ru>
 
5
 *      
 
6
 *      This program is free software: you can redistribute it and/or modify
 
7
 *      it under the terms of the GNU General Public License as published by
 
8
 *      the Free Software Foundation; either version 3 of the License, or
 
9
 *      (at your option) any later version.
 
10
 *      
 
11
 *      This program is distributed in the hope that it will be useful,
 
12
 *      but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 *      GNU General Public License for more details.
 
15
 *      
 
16
 *      You should have received a copy of the GNU General Public License
 
17
 *      along with this program. If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#ifndef __STRFORMAT_H__
 
21
#define __STRFORMAT_H__
 
22
 
 
23
#include <stdlib.h>
 
24
#include <stdio.h>
 
25
#include <glib.h>
 
26
 
 
27
#include "mmguicore.h"
 
28
 
 
29
gchar *mmgui_str_format_speed(gfloat speed, gchar *buffer, gsize bufsize, gboolean small);
 
30
gchar *mmgui_str_format_time_number(guchar number, gchar *buffer, gsize bufsize);
 
31
gchar *mmgui_str_format_time(guint64 seconds, gchar *buffer, gsize bufsize, gboolean small);
 
32
gchar *mmgui_str_format_bytes(guint64 bytes, gchar *buffer, gsize bufsize, gboolean small);
 
33
gchar *mmgui_str_format_mode_string(enum _mmgui_device_modes mode);
 
34
gchar *mmgui_str_format_na_status_string(enum _mmgui_network_availability status);
 
35
gchar *mmgui_str_format_access_tech_string(enum _mmgui_access_tech status);
 
36
gchar *mmgui_str_format_reg_status(enum _mmgui_reg_status status);
 
37
 
 
38
#endif /* __STRFORMAT_H__ */