~marcobiscaro2112/usb-creator/fix-1731977

« back to all changes in this revision

Viewing changes to tools/pylauncher/str.h

  • Committer: Mathieu Trudel-Lapierre
  • Date: 2015-12-11 17:37:20 UTC
  • mfrom: (472.1.46 usb-creator)
  • Revision ID: mathieu.trudel-lapierre@canonical.com-20151211173720-6wobakg37b2habnx
* Rework the whole imaging process for writing to devices:
  - Use an equivalent of dd to make an exact copy of the image to the device
  - This also breaks persistence.
* Update UI and frontend code to drop the persistence widgets.
* Drop Erase Disk widgets too.
* debian/usb-creator-common.postinst, debian/usb-creator-common.prerm:
  stop usb-creator-helper on package upgrades and removals.
  (LP: #1497569)

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