Subversion Repositories HelenOS-historic

Rev

Rev 1438 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1438 Rev 1702
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
 /** @addtogroup generic   
-
 
30
 * @{
-
 
31
 */
-
 
32
/** @file
-
 
33
 */
-
 
34
 
29
#ifndef __PRINT_H__
35
#ifndef __PRINT_H__
30
#define __PRINT_H__
36
#define __PRINT_H__
31
 
37
 
32
#include <arch/types.h>
38
#include <arch/types.h>
33
#include <synch/spinlock.h>
39
#include <synch/spinlock.h>
Line 45... Line 51...
45
extern int vprintf(const char *fmt, va_list ap);
51
extern int vprintf(const char *fmt, va_list ap);
46
extern int vsprintf(char *str, const char *fmt, va_list ap);
52
extern int vsprintf(char *str, const char *fmt, va_list ap);
47
extern int vsnprintf(char *str, size_t size, const char *fmt, va_list ap);
53
extern int vsnprintf(char *str, size_t size, const char *fmt, va_list ap);
48
 
54
 
49
#endif
55
#endif
-
 
56
 
-
 
57
 /** @}
-
 
58
 */
-
 
59