File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -272,7 +272,7 @@ int ti_Delete(const char *name);
272
272
* @param type Type of variable to delete
273
273
* @returns 0 if failed
274
274
*/
275
- int ti_DeleteVar (const char * varname , uint8_t type );
275
+ int ti_DeleteVar (const char * varname , const uint8_t type );
276
276
277
277
/**
278
278
* Gets the string used for displaying a TI token
@@ -317,7 +317,7 @@ void ti_GetName(char *name, const ti_var_t slot);
317
317
* @returns 0 if success, 1 if file already exists, 2 any other error occurs.
318
318
* @warning: This function closes all open slots!
319
319
*/
320
- uint8_t ti_Rename (char * old , char * new );
320
+ uint8_t ti_Rename (const char * old , const char * new );
321
321
322
322
/**
323
323
* Renames a variable
@@ -328,7 +328,7 @@ uint8_t ti_Rename(char *old, char *new);
328
328
* @returns 0 if success, 1 if file already exists, 2 any other error occurs.
329
329
* @warning: This function closes all open slots!
330
330
*/
331
- uint8_t ti_RenameVar (char * old , char * new , uint8_t type );
331
+ uint8_t ti_RenameVar (const char * old , const char * new , const uint8_t type );
332
332
333
333
/**
334
334
* Sets a variable
You can’t perform that action at this time.
0 commit comments