This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
int addi(int a, int b) { | |
return a + b; | |
} | |
char *adds(char *a, char *b) { | |
char *res = malloc(strlen(a) + strlen(b) + 1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// script.name = scaleStrokes.jsx; | |
// script.description = scales selected objects strokes only; | |
// script.required = one or more selected objects | |
// script.parent = CarlosCanto // 5/7/12; | |
// script.elegant = false; | |
// script.updates = preview ON by default // 5/7/12 | |
#target Illustrator | |
#targetengine 'main' | |
var unscale = 0; |