Sophie

Sophie

distrib > Mandriva > 2010.1 > x86_64 > by-pkgid > 23fdeec2afeeb035357795bcffb419c6 > files > 131

libmtp-doc-1.0.2-1mdv2010.1.x86_64.rpm

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>libmtp: /home/mandrake/rpm/BUILD/libmtp-1.0.2/src/util.h Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.6.2 -->
<div class="navigation" id="top">
  <div class="tabs">
    <ul>
      <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
      <li><a href="modules.html"><span>Modules</span></a></li>
      <li><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li>
      <li class="current"><a href="files.html"><span>Files</span></a></li>
      <li><a href="dirs.html"><span>Directories</span></a></li>
      <li><a href="examples.html"><span>Examples</span></a></li>
    </ul>
  </div>
  <div class="tabs">
    <ul>
      <li><a href="files.html"><span>File&nbsp;List</span></a></li>
      <li><a href="globals.html"><span>Globals</span></a></li>
    </ul>
  </div>
  <div class="navpath"><a class="el" href="dir_afadb87d2fbfeb62b40078349a549d44.html">src</a>
  </div>
</div>
<div class="contents">
<h1>util.h</h1><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<a name="l00002"></a>00002 <span class="comment"> * \file util.h</span>
<a name="l00003"></a>00003 <span class="comment"> * Utilityfunctions.</span>
<a name="l00004"></a>00004 <span class="comment"> *</span>
<a name="l00005"></a>00005 <span class="comment"> * Copyright (C) 2005-2007 Linus Walleij &lt;triad@df.lth.se&gt;</span>
<a name="l00006"></a>00006 <span class="comment"> *</span>
<a name="l00007"></a>00007 <span class="comment"> * This library is free software; you can redistribute it and/or</span>
<a name="l00008"></a>00008 <span class="comment"> * modify it under the terms of the GNU Lesser General Public</span>
<a name="l00009"></a>00009 <span class="comment"> * License as published by the Free Software Foundation; either</span>
<a name="l00010"></a>00010 <span class="comment"> * version 2 of the License, or (at your option) any later version.</span>
<a name="l00011"></a>00011 <span class="comment"> *</span>
<a name="l00012"></a>00012 <span class="comment"> * This library is distributed in the hope that it will be useful,</span>
<a name="l00013"></a>00013 <span class="comment"> * but WITHOUT ANY WARRANTY; without even the implied warranty of</span>
<a name="l00014"></a>00014 <span class="comment"> * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU</span>
<a name="l00015"></a>00015 <span class="comment"> * Lesser General Public License for more details.</span>
<a name="l00016"></a>00016 <span class="comment"> *</span>
<a name="l00017"></a>00017 <span class="comment"> * You should have received a copy of the GNU Lesser General Public</span>
<a name="l00018"></a>00018 <span class="comment"> * License along with this library; if not, write to the</span>
<a name="l00019"></a>00019 <span class="comment"> * Free Software Foundation, Inc., 59 Temple Place - Suite 330,</span>
<a name="l00020"></a>00020 <span class="comment"> * Boston, MA 02111-1307, USA.</span>
<a name="l00021"></a>00021 <span class="comment"> */</span>
<a name="l00022"></a>00022 
<a name="l00023"></a>00023 <span class="preprocessor">#ifndef __MTP__UTIL__H</span>
<a name="l00024"></a>00024 <span class="preprocessor"></span><span class="preprocessor">#define __MTP__UTIL__H</span>
<a name="l00025"></a>00025 <span class="preprocessor"></span>
<a name="l00026"></a>00026 <span class="keywordtype">void</span> <a class="code" href="util_8c.html#afe478b8d8d7b385fccca13342a99c62d">data_dump</a>(FILE *f, <span class="keywordtype">void</span> *buf, uint32_t nbytes);
<a name="l00027"></a>00027 <span class="keywordtype">void</span> <a class="code" href="util_8c.html#aca628b13ac3aa0e8799abdcc02834f8c">data_dump_ascii</a> (FILE *f, <span class="keywordtype">void</span> *buf, uint32_t n, uint32_t dump_boundry);
<a name="l00028"></a>00028 
<a name="l00032"></a>00032 <span class="preprocessor">#define LIBMTP_INFO(format, args...) \</span>
<a name="l00033"></a>00033 <span class="preprocessor">  do { \</span>
<a name="l00034"></a>00034 <span class="preprocessor">    if (LIBMTP_debug != 0) \</span>
<a name="l00035"></a>00035 <span class="preprocessor">      fprintf(stdout, &quot;LIBMTP %s[%d]: &quot; format, __FUNCTION__, __LINE__, ##args); \</span>
<a name="l00036"></a>00036 <span class="preprocessor">        else \</span>
<a name="l00037"></a>00037 <span class="preprocessor">      fprintf(stdout, format, ##args); \</span>
<a name="l00038"></a>00038 <span class="preprocessor">  } while (0)</span>
<a name="l00039"></a>00039 <span class="preprocessor"></span>
<a name="l00043"></a>00043 <span class="preprocessor">#define LIBMTP_ERROR(format, args...) \</span>
<a name="l00044"></a>00044 <span class="preprocessor">  do { \</span>
<a name="l00045"></a>00045 <span class="preprocessor">    if (LIBMTP_debug != 0) \</span>
<a name="l00046"></a>00046 <span class="preprocessor">      fprintf(stderr, &quot;LIBMTP %s[%d]: &quot; format, __FUNCTION__, __LINE__, ##args); \</span>
<a name="l00047"></a>00047 <span class="preprocessor">        else \</span>
<a name="l00048"></a>00048 <span class="preprocessor">      fprintf(stderr, format, ##args); \</span>
<a name="l00049"></a>00049 <span class="preprocessor">  } while (0)</span>
<a name="l00050"></a>00050 <span class="preprocessor"></span>
<a name="l00051"></a>00051 
<a name="l00052"></a>00052 <span class="preprocessor">#endif //__MTP__UTIL__H</span>
</pre></div></div>
<hr size="1"/><address style="text-align: right;"><small>Generated by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.2 </small></address>
</body>
</html>