]> git.proxmox.com Git - qemu.git/blobdiff - vl.h
added cutils.c
[qemu.git] / vl.h
diff --git a/vl.h b/vl.h
index 35222dc34d332c12048f5f63433da78f317f9adf..ef1205cceb991db3924841c0fa067eb0d5f4d2a2 100644 (file)
--- a/vl.h
+++ b/vl.h
@@ -102,6 +102,12 @@ static inline char *realpath(const char *path, char *resolved_path)
 #define MAX(a, b) (((a) > (b)) ? (a) : (b))
 #endif
 
+/* cutils.c */
+void pstrcpy(char *buf, int buf_size, const char *str);
+char *pstrcat(char *buf, int buf_size, const char *s);
+int strstart(const char *str, const char *val, const char **ptr);
+int stristart(const char *str, const char *val, const char **ptr);
+
 /* vl.c */
 uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c);
 
@@ -109,10 +115,6 @@ void hw_error(const char *fmt, ...);
 
 extern const char *bios_dir;
 
-void pstrcpy(char *buf, int buf_size, const char *str);
-char *pstrcat(char *buf, int buf_size, const char *s);
-int strstart(const char *str, const char *val, const char **ptr);
-
 extern int vm_running;
 
 typedef struct vm_change_state_entry VMChangeStateEntry;