~usb-creator-hackers/usb-creator/trunk

« back to all changes in this revision

Viewing changes to tools/pylauncher/str.h

  • Committer: Marc Deslauriers
  • Date: 2015-09-29 14:07:32 UTC
  • mto: This revision was merged to the branch mainline in revision 474.
  • Revision ID: marc.deslauriers@canonical.com-20150929140732-g68r09wu5ecrm5f1
regenerated translations

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef _STR_H_
2
 
#define _STR_H_
3
 
 
4
 
char* concat(char* str1, char* str2, int free_old);
5
 
char* concatn(char* str1, char* str2, size_t len2, int free_old);
6
 
void freestr(char** ptr);
7
 
 
8
 
#endif
9