If possible, use the assignment operator instead of memcpy:
struct s *s1;
struct s *s2;
*s1 = *s2;| <link rel="import" href="../topeka-elements/category-icons.html"> | |
| <link rel="import" href="../core-icon/core-icon.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; |
| <link rel="import" href="../google-map/google-map.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; |
| <link rel="import" href="../polymer/polymer.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; |
| #!/bin/bash | |
| # Based on: https://nixaid.com/bootable-usb-windows-linux/ | |
| # Dependencies: ntfs-3g rsync | |
| set -euo pipefail | |
| iso="$1" | |
| drive="$2" |