1
0
mirror of git://projects.qi-hardware.com/fped.git synced 2025-04-21 12:27:27 +03:00

- GUI: added creation and moving of vectors, measurements, and frame references

git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5389 99fdad57-331a-0410-800a-d7fa5415bdb3
This commit is contained in:
werner
2009-08-05 14:44:36 +00:00
parent cdcd2f36b3
commit 5d989a3e28
11 changed files with 419 additions and 72 deletions

13
expr.c
View File

@@ -384,6 +384,19 @@ fail:
}
/* ----- make a number -----------------------------------------------------*/
struct expr *new_num(struct num num)
{
struct expr *expr;
expr = new_op(op_num);
expr->u.num = num;
return expr;
}
/* ----- expression-only parser -------------------------------------------- */