diff asxparser.h @ 19053:75327b24e06f

marks several string parameters as const, as they are not modified inside the function, Patch by Stefan Huehner, stefan AT huehner-org
author reynaldo
date Thu, 13 Jul 2006 05:03:43 +0000
parents 1f6ae3d15f19
children 2ec2301183cd
line wrap: on
line diff
--- a/asxparser.h	Thu Jul 13 03:05:08 2006 +0000
+++ b/asxparser.h	Thu Jul 13 05:03:43 2006 +0000
@@ -37,7 +37,7 @@
 asx_get_attrib(char* attrib,char** attribs);
 
 int
-asx_attrib_to_enum(char* val,char** valid_vals);
+asx_attrib_to_enum(const char* val,char** valid_vals);
 
 #define asx_free_attribs(a) asx_list_free((void***)&a,free)